@charset "UTF-8";
html {
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth; }

body {
  background: #F8F7F5;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #333333; }

section {
  scroll-margin-top: 90px; }

a {
  text-decoration: none;
  color: #333333; }

ol, ul {
  list-style: none; }

p {
  line-height: 200%;
  letter-spacing: 1px; }

h2 {
  position: relative;
  text-align: center;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 2px;
  z-index: 1; }
  h2::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Outfit", serif;
    font-size: clamp(6.3rem, 13vw, 12.5rem);
    color: #fff;
    z-index: -1; }

@media (max-width: 600px) {
  p {
    line-height: 180%; } }
.br_1100, .br_600 {
  display: none; }

@media (max-width: 1100px) {
  .br_1100 {
    display: block; } }
@media (max-width: 600px) {
  .br_600 {
    display: block; } }
.line_yellow {
  background: linear-gradient(transparent 60%, #FFF7B9 30%);
  font-weight: 700; }

.title_grad {
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

h2 .title_small {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: bold;
  line-height: 120%; }

.cross {
  position: relative;
  width: clamp(15px, 3.5vw, 45px);
  height: auto;
  aspect-ratio: 1 /1; }
  .cross::before, .cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(1.5px, 0.3vw, 4px);
    height: 100%;
    border-radius: 4px;
    background: #333333; }
  .cross::before {
    transform: translate(-50%, -50%) rotate(45deg); }
  .cross::after {
    transform: translate(-50%, -50%) rotate(-45deg); }

.bg_line {
  position: absolute;
  width: 25%;
  height: clamp(34px, 5vw, 72px);
  transform: rotate(-10deg); }
  .bg_line::before, .bg_line::after {
    content: "";
    position: absolute;
    transform: scaleX(0);
    transform-origin: left; }
  .bg_line::before {
    width: 60%;
    height: clamp(8px, 1.3vw, 20px);
    background: #FF5584; }
  .bg_line::after {
    width: 80%;
    height: clamp(15px, 2.1vw, 40px);
    background: #FFA351; }
  .bg_line.overlay {
    mix-blend-mode: overlay; }

.animate::before {
  animation: line_in_1 .8s ease-out forwards; }
.animate::after {
  animation: line_in_2 .8s ease-out forwards; }

@keyframes line_in_1 {
  0%,20% {
    transform: scaleX(0); }
  70%,100% {
    transform: scaleX(1); } }
@keyframes line_in_2 {
  0%,40% {
    transform: scaleX(0); }
  100% {
    transform: scaleX(1); } }
@media (max-width: 600px) {
  .bg_line {
    width: 45%; } }
.hover_push {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  transition: .3s; }
  .hover_push:hover {
    box-shadow: none;
    transform: translateY(3px); }

.white_bg_grad {
  position: relative;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1; }
  .white_bg_grad::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1; }

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

.top_header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  margin: 0 auto;
  padding-top: 1.5%; }

.header_logo {
  width: min(306px, 25%); }

.header_inquiry_btn {
  display: block;
  border-radius: 100px;
  background: #54C5BA;
  padding: 5% 25px;
  text-align: center;
  font-size: min(1.2rem, 1.4vw);
  color: #fff;
  line-height: 120%;
  letter-spacing: 0; }
  .header_inquiry_btn span {
    display: block;
    font-size: min(1rem, 1.2vw); }

.fixed_nav {
  position: fixed;
  top: -100px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  padding: 0.5% 3%;
  background: #FAFAFA;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: .5s; }
  .fixed_nav nav {
    width: 85%; }
  .fixed_nav ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2%; }
  .fixed_nav a {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    transition: .3s; }
    .fixed_nav a:hover {
      color: #FF5584; }
  .fixed_nav .header_inquiry_btn {
    font-size: min(1.2rem, 1.4vw); }
    .fixed_nav .header_inquiry_btn:hover {
      color: #fff; }

.fixed_nav.is-show {
  top: 0; }

@media (max-width: 1100px) {
  .header_logo {
    width: min(306px, 25%); }

  .sp_fixed_inquiry {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 98%;
    padding: 1%;
    background: #FAFAFA;
    z-index: 999;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25); }

  .header_inquiry_btn {
    max-width: 500px;
    padding: 2%;
    margin: 0 auto;
    background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
    font-size: max(1.2rem, 2.4vw); }
    .header_inquiry_btn span {
      font-size: max(1rem, 2vw);
      font-weight: 400; }

  .fixed_nav {
    width: 88%;
    padding: 1% 6%; }
    .fixed_nav .header_logo {
      z-index: 2; }

  .hamburger {
    position: relative;
    width: max(40px, 8%);
    height: auto;
    aspect-ratio: 1 / 1;
    background: #79C5BE;
    border-radius: 40px;
    cursor: pointer;
    z-index: 2; }
    .hamburger::before, .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      width: 60%;
      height: 2px;
      background: #fff;
      transition: .3s; }
    .hamburger::before {
      top: 40%; }
    .hamburger::after {
      top: 60%; }

  .hamburger.open::before {
    transform: rotate(19deg) scaleX(1.1);
    transform-origin: left; }

  .hamburger.open::after {
    transform: rotate(-19deg) scaleX(1.1);
    transform-origin: left; }

  .fixed_nav nav {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #FAFAFA;
    z-index: 1;
    transition: .5s; }
  .fixed_nav ul {
    grid-auto-flow: row;
    justify-content: normal;
    width: max(280px, 50%); }
  .fixed_nav li {
    border-bottom: 1px solid #A8A8A8; }
  .fixed_nav a {
    display: flex;
    justify-content: space-between;
    padding: 5%;
    margin: 2% 0;
    font-size: max(1rem, 2vw);
    letter-spacing: 3px; }
    .fixed_nav a::after {
      content: "";
      display: inline-block;
      width: 12px;
      height: 15px;
      background: #FF5584;
      clip-path: polygon(0 0, 100% 50%, 0 100%); }
  .fixed_nav .fixed_inquiry_btn_wrap {
    display: none; }

  .fixed_nav nav.open {
    right: 0; } }
@media (max-width: 600px) {
  .header_logo {
    width: 162px; }

  .sp_fixed_inquiry {
    width: 100%;
    padding: 0; }

  .header_inquiry_btn {
    width: 96%;
    border-radius: 0; } }
.Top {
  position: relative; }

.bg_line.top_1 {
  top: 11%;
  left: 0; }
  .bg_line.top_1::before {
    top: 0;
    right: 0; }
  .bg_line.top_1::after {
    bottom: 0;
    left: 0; }
.bg_line.top_2 {
  bottom: 17%;
  right: 0;
  width: 40%;
  z-index: -1; }
  .bg_line.top_2::before {
    top: 0;
    left: 0;
    width: 70%; }
  .bg_line.top_2::after {
    bottom: 0;
    right: 0;
    width: 40%; }

.top_text {
  position: absolute;
  top: 18%;
  left: 8%;
  z-index: 1; }

.top_catch {
  font-size: min(3rem, 2.4vw);
  line-height: 150%; }
  .top_catch .bold {
    font-size: min(4.5rem, 3.8vw);
    font-weight: 900;
    background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
  .top_catch .bg {
    display: inline-block;
    padding: 11px 10px 16px;
    margin-top: max(5px, 1%);
    background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
    font-size: min(5.6rem, 4.2vw);
    font-weight: 900;
    color: #fff;
    transform: translate(-15px); }

.top_info {
  margin-top: 6%; }
  .top_info li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1%; }
    .top_info li::before {
      content: "";
      width: min(60px, 3vw);
      height: auto;
      aspect-ratio: 6 / 5;
      background: url("../img/icon_check.svg") no-repeat;
      background-size: contain; }
    .top_info li p {
      background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%) no-repeat;
      background-size: 100% 10%;
      background-position: bottom;
      font-size: min(2rem, 1.7vw);
      line-height: 140%; }

.fv_img {
  display: block;
  width: min(994px, 46%);
  height: auto;
  margin: 0 0 0 auto; }

.top_cashback {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1% 0;
  margin-top: 1%;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); }

.cashback_text_img_pc {
  width: min(908px, 60%);
  height: auto;
  object-fit: contain; }

.cashback_text_img_sp {
  display: none; }

.reskilling_logo_img {
  width: min(332px, 17%);
  height: auto;
  margin-left: 4%;
  object-fit: contain; }

@media (max-width: 1100px) {
  .bg_line.top_1 {
    top: 8%;
    left: auto;
    right: 0; }
  .bg_line.top_2 {
    bottom: 14%;
    left: 0;
    right: auto;
    width: 36%; }

  .top_text {
    top: 16%;
    left: 3%; }

  .top_catch {
    font-size: 2.8vw; }
    .top_catch .bold {
      font-size: 4vw; }
    .top_catch .bg {
      padding: 10px 10px 14px;
      font-size: 5.5vw; }

  .top_info {
    margin-top: 10%; }
    .top_info li {
      font-size: 2vw; }

  .fv_img {
    width: min(600px, 60%);
    padding-top: 15%; }

  .top_cashback {
    margin-top: 3%; } }
@media (max-width: 600px) {
  .bg_line.top_1 {
    top: 2%; }
  .bg_line.top_2 {
    bottom: 11.5%;
    width: 55%; }

  .top_text {
    top: 68px;
    left: 12px; }

  .top_catch {
    font-size: 1.3rem; }
    .top_catch .bold {
      font-size: 2rem; }
    .top_catch .bg {
      padding: 8px 8px 12px;
      font-size: 2.6rem;
      transform: translate(-12px); }

  .top_info {
    margin-top: 30px; }
    .top_info li::before {
      width: 28px; }
    .top_info li p {
      font-size: 1rem; }

  .fv_img {
    width: 96%;
    padding-top: 314px; }

  .top_cashback {
    position: relative;
    padding: 2% 0;
    margin-top: 7%; }

  .cashback_text_img_pc {
    display: none; }

  .cashback_text_img_sp {
    display: block;
    width: 332px; }

  .reskilling_logo_img {
    position: absolute;
    bottom: 106%;
    right: 2%;
    width: min(139px, 30%); } }
.About {
  background: url("../img/bg_pc.jpg") no-repeat;
  background-size: cover;
  background-position: top center; }
  .About h2 {
    padding: 2% 6%;
    background: url("../img/about_title_bg.png") no-repeat;
    background-size: 100% 100%;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: #fff;
    text-align: center;
    letter-spacing: 1px; }
    .About h2 small {
      font-size: clamp(1.8rem, 3vw, 3rem); }

.about_wrap {
  width: 65%;
  max-width: 1100px;
  padding: max(160px, 12.5%) 0 46%;
  margin: 0 auto; }

.about_logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: max(40px, 3%) 0; }

.about_yconnect_logo, .about_dhs_logo {
  height: min(194px, 11vw); }

.about_logo_wrap .cross {
  margin: 0 4%; }

.about_wrap p {
  margin-top: 1%;
  font-size: clamp(1rem, 1.4vw, 1.1rem); }

@media (max-width: 1100px) {
  .About {
    background: none; }

  .about_wrap {
    width: 80%;
    padding: 60px 0 0; }

  .curriculum_text_img {
    display: block;
    width: min(700px, 100%); }

  .about_yconnect_logo, .about_dhs_logo {
    height: max(83px, 15vw); }

  .about_logo_wrap .cross {
    margin: 0 2%; } }
@media (max-width: 600px) {
  .About h2 {
    padding: 3% 6%; }

  .about_wrap {
    width: 94%; } }
.Point {
  position: relative;
  padding-bottom: 13%;
  z-index: 1; }
  .Point h2 {
    position: absolute;
    top: -7%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: clamp(1.7rem, 4.2vw, 4rem); }
    .Point h2 .title_grad {
      font-family: "Outfit", serif;
      font-size: clamp(4rem, 8.3vw, 8.1rem);
      vertical-align: sub; }
    .Point h2::after {
      content: "POINT"; }

.point_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1200px, 85%);
  margin: 0 auto; }

.point_number {
  width: auto;
  height: clamp(57px, 8vw, 105px); }

.point_inner h3 {
  margin-top: 5%;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 100%;
  letter-spacing: 1px; }
  .point_inner h3 small {
    font-size: clamp(1.4rem, 2.4vw, 2.3rem);
    line-height: 130%; }
.point_inner p {
  width: 85%;
  margin-top: 5%; }

.point_1_wrap {
  position: relative;
  padding: 8% 0 12%; }
  .point_1_wrap::before {
    content: "";
    position: absolute;
    top: -12%;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, #fca3bb 0%, #fff3ef 50%, #fccda4 100%);
    transform: skewY(-10deg);
    z-index: -1; }

.point_img1 {
  width: min(607px, 45%); }

.point_2_wrap {
  padding: 2% 0; }
  .point_2_wrap .point_inner {
    flex-flow: row-reverse; }
  .point_2_wrap .text {
    width: 55%; }

.point_2_intro {
  display: inline-block;
  padding: 2% 1%;
  margin-bottom: 2%;
  border-radius: 3px;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  font-size: 1.1rem;
  color: #fff;
  line-height: 130%; }

.point_img2 {
  width: min(495px, 43%); }

.point_3_wrap {
  position: relative;
  padding: 13% 0 2%; }
  .point_3_wrap::before {
    content: "";
    position: absolute;
    top: 9%;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, #fccda4 0%, #fff3ef 50%, #fca3bb 100%);
    transform: skewY(-10deg);
    z-index: -1; }

.point_img3 {
  width: min(585px, 46%); }

.bg_line.point_1 {
  top: -7%;
  left: 0; }
  .bg_line.point_1::before {
    bottom: 0;
    left: 0;
    width: 70%; }
  .bg_line.point_1::after {
    top: 0;
    right: 0; }
.bg_line.point_2 {
  bottom: 13%;
  right: 0; }
  .bg_line.point_2::before {
    top: 0;
    right: 0;
    width: 100%; }
  .bg_line.point_2::after {
    display: none; }
.bg_line.point_3 {
  top: 8%;
  left: 0; }
  .bg_line.point_3::before {
    top: 0;
    right: 0; }
  .bg_line.point_3::after {
    bottom: 0;
    left: 0;
    width: 60%; }
.bg_line.point_4 {
  bottom: -8%;
  right: 0; }
  .bg_line.point_4::before {
    top: 0;
    right: 0; }
  .bg_line.point_4::after {
    bottom: 0;
    left: 0; }

@media (max-width: 1100px) {
  .Point {
    margin-top: 210px; }
    .Point h2 small {
      line-height: 100%;
      letter-spacing: 0; }

  .point_inner {
    width: 80%; }

  .point_inner h3 {
    margin-top: 35px; }
  .point_inner p {
    width: 100%;
    margin-top: 20px; }

  .point_img1, .point_img2, .point_img3 {
    position: absolute; }

  .point_1_wrap {
    padding: 5% 0 15%; }

  .point_img1 {
    top: 1%;
    right: 4%;
    width: clamp(176px, 35%, 340px); }

  .point_2_wrap {
    position: relative;
    padding: 5% 0; }
    .point_2_wrap .point_inner {
      flex-flow: row; }
    .point_2_wrap .text {
      width: 100%; }

  .point_img2 {
    top: -6%;
    right: 3%;
    width: clamp(185px, 34%, 320px);
    transform: scale(-1, 1); }

  .point_3_wrap {
    padding: 17% 0 3%; }

  .point_img3 {
    top: 61px;
    right: 8%;
    width: clamp(197px, 36%, 340px); } }
.bg_line.point_1 {
  top: -14%; }

@media (max-width: 600px) {
  .Point {
    margin-top: 120px; }
    .Point h2 {
      top: -10px; }

  .point_inner {
    width: 94%; }
    .point_inner h3 {
      letter-spacing: 0; }

  .point_1_wrap {
    padding: 110px 0 100px; }

  .point_img1 {
    top: 86px; }

  .point_2_wrap {
    padding: 5px 0 15px; }

  .point_2_intro {
    display: block;
    width: 97%;
    padding: 2% 4%;
    border-radius: 0;
    transform: translateX(-2.5%); }

  .point_img2 {
    top: -46px;
    right: 1%; }

  .point_3_wrap {
    padding: 120px 0 10px; }

  .point_img3 {
    right: 2%; }

  .bg_line.point_1 {
    top: -14%; }
  .bg_line.point_2 {
    bottom: 8%;
    width: 35%; }
  .bg_line.point_3 {
    top: 4%; }
  .bg_line.point_4 {
    bottom: -14%; } }
.Course {
  position: relative;
  padding-top: 4%;
  background: linear-gradient(85deg, #fca3bb 0%, #fff3ef 50%, #fccda4 100%); }
  .Course::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.1763;
    background: #F8F7F5;
    clip-path: polygon(0 0, 100% 0, 0 100%); }
  .Course h2::after {
    content: "COURSE";
    font-size: clamp(5.6rem, 13vw, 12.5rem); }

.course_title_small {
  font-size: clamp(1.5rem, 4.3vw, 4rem); }

.course_list_wrap {
  position: relative; }
  .course_list_wrap li {
    border-radius: 5px;
    font-weight: 700; }
  .course_list_wrap .bg {
    display: grid;
    grid-template-areas: "grid_title grid_title grid_title grid_title grid_title" ". grid_regular grid_arrow grid_actual ." ". grid_cashback grid_cashback grid_cashback ." ". grid_open grid_open grid_open .";
    grid-template-rows: auto;
    grid-template-columns: auto;
    column-gap: 2%;
    justify-content: center;
    place-items: center;
    background: #fff;
    width: min(calc(1200px - 8%), 77%);
    padding: 4%;
    margin: 5% auto 0; }

.list-title_wrap {
  grid-area: grid_title;
  display: flex;
  justify-content: center;
  align-items: center; }

.course_img {
  width: clamp(90px, 14vw, 190px);
  margin-right: 20px; }

.course_list_wrap h3 {
  margin: 3% 0;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  font-weight: 900; }
.course_list_wrap .pink {
  color: #FF5584; }
.course_list_wrap .orange {
  color: #FFA351; }
.course_list_wrap .green {
  color: #54C5BA; }

.course_list_intro {
  display: block;
  padding-bottom: 2%;
  font-size: clamp(1rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: #333333; }

.mama_title_small {
  display: block;
  margin-top: 2%;
  font-size: clamp(1.4rem, 3vw, 2.5rem); }

.graphic_title_small {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 130%;
  color: #333333; }

.regular {
  grid-area: grid_regular;
  font-size: clamp(1.3rem, 3.8vw, 2.5rem);
  line-height: 100%; }
  .regular::before {
    content: "※最大補助70％の場合";
    display: block;
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    letter-spacing: 0; }
  .regular span {
    padding-bottom: 5%; }
  .regular .price::before, .regular .price::after {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem); }
  .regular .price::before {
    content: "通常"; }
  .regular .price::after {
    content: "円"; }

.course_arrow {
  grid-area: grid_arrow;
  width: clamp(27px, 5vw, 55px); }

.actual {
  grid-area: grid_actual;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 100%; }
  .actual span {
    padding: 5px;
    border: 2px solid transparent;
    border-image: linear-gradient(60deg, #ff5584 0%, #ffa351 100%) 1;
    font-weight: 700; }
  .actual small {
    font-size: clamp(1.1rem, 2.8vw, 1.8rem); }
  .actual::before {
    content: "実質料金";
    display: block;
    width: fit-content;
    padding: 1.5% 5%;
    border: 2px solid transparent;
    border-image: linear-gradient(60deg, #ff5584 0%, #ffa351 100%) 1;
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 700;
    line-height: 100%; }
  .actual::after {
    content: "円";
    font-size: clamp(1.1rem, 2.8vw, 1.8rem); }

.course_cashback {
  grid-area: grid_cashback;
  width: 100%;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  font-size: clamp(1.4rem, 3.6vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  text-align: center; }

.course_opt {
  display: flex;
  justify-content: space-between;
  width: min(1200px, 85%);
  margin: 0 auto; }
  .course_opt li {
    display: grid;
    grid-template-areas: "grid_opt_img grid_intro grid_intro grid_intro" "grid_title grid_title grid_title grid_title" "grid_regular grid_regular grid_arrow grid_actual" "grid_cashback grid_cashback grid_cashback grid_cashback" "grid_open grid_open grid_open grid_open";
    grid-template-rows: max-content;
    grid-template-columns: 20% 14% 10% 56%;
    justify-content: center;
    place-items: center;
    width: 45%;
    padding: 0 2% 4%;
    margin: 2% 0 0;
    background: #fff; }

.course_opt_img {
  grid-area: grid_opt_img;
  width: min(97px, 90%);
  margin-right: 3%; }

.course_opt_intro {
  grid-area: grid_intro;
  font-size: clamp(1rem, 2.1vw, 1.8rem);
  font-weight: 900;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.course_opt h3 {
  grid-area: grid_title;
  display: block;
  margin: 3% 0;
  font-size: clamp(1.3rem, 2.1vw, 1.5rem);
  text-align: center;
  line-height: 130%; }

.course_opt_line {
  display: inline-block;
  border-bottom: 5px solid;
  border-image: linear-gradient(60deg, #ff5584 0%, #ffa351 100%) 1;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 150%; }

.course_opt .course_price {
  padding-top: 7%; }
.course_opt .regular {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem); }
.course_opt .course_arrow {
  width: clamp(27px, 3vw, 42px); }
.course_opt .actual {
  font-size: clamp(2.3rem, 4.2vw, 4rem); }
.course_opt .course_cashback {
  font-size: clamp(1.4rem, 2.4vw, 2rem); }

.popup_open {
  grid-area: grid_open;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 40px;
  margin-top: 4%;
  border: 1px solid #333333;
  border-radius: 50px;
  background: #fff;
  font-size: clamp(0.7rem, 1.4vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer; }
  .popup_open::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: auto;
    aspect-ratio: 12 / 15;
    margin-left: 15px;
    background: #333333;
    clip-path: polygon(0 0, 0% 100%, 100% 50%); }

.course_popup {
  display: none; }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1000; }
  .popup::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(60deg, #fca3bb 0%, #fff3ef 50%, #fccda4 100%);
    opacity: 0.6;
    z-index: -1; }

.popup_container {
  position: relative;
  width: min(800px, 75%);
  max-height: 70%;
  padding: 5% 5% 120px;
  margin: auto;
  background: #fff;
  overflow-y: scroll; }

.popup_close {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  width: fit-content;
  padding: 10px 40px;
  margin: 0 auto;
  border: 1px solid #333333;
  border-radius: 50px;
  background: #fff;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer; }

.course_popup:checked + .popup {
  display: flex;
  opacity: 1; }

.course_list_wrap .popup_container h3 {
  display: block;
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 120%;
  text-align: center; }

.course_period {
  width: 100%;
  margin-top: 3%;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: #fff;
  text-align: center;
  letter-spacing: 2px; }

.course_desc {
  margin-top: 3%;
  font-weight: 500; }

.popup_container .mama_title_small {
  margin: 0; }

.other_courses_intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0; }
  .other_courses_intro::before, .other_courses_intro::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #333333; }
  .other_courses_intro::before {
    transform: rotate(60deg); }
  .other_courses_intro::after {
    transform: rotate(-60deg); }

.other_popup_open {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 20px 7%;
  margin: 0.5% auto 8%;
  border-radius: 50px;
  background: #FF5584;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer; }
  .other_popup_open::after {
    content: "";
    position: absolute;
    right: 10%;
    display: inline-block;
    width: auto;
    height: 25%;
    aspect-ratio: 15 / 18;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%); }

.popup.other_course {
  height: 100%;
  padding-bottom: 2%; }
  .popup.other_course .popup_close {
    top: 3%;
    bottom: auto;
    left: auto;
    right: 5%;
    margin: 0; }

.other_course_popup_container {
  width: min(1100px, 90%);
  height: 80%;
  overflow-y: scroll;
  margin: auto; }
  .other_course_popup_container li {
    position: relative;
    display: grid;
    grid-template-areas: "title . . ." "title regular arrow actual" "title cashback cashback cashback" "title . . .";
    grid-template-columns: 42% 18% 6% 34%;
    place-items: center;
    width: 96%;
    padding: 3% 3% 3% 1%;
    margin-bottom: 1%;
    background: #fff; }
    .other_course_popup_container li::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 40%;
      width: 1px;
      height: 80%;
      margin: auto;
      background: #A8A8A8; }
  .other_course_popup_container h3 {
    grid-area: title;
    margin-right: 5%;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    text-align: center;
    line-height: 130%;
    letter-spacing: 0; }
    .other_course_popup_container h3 span {
      display: inline-block; }
    .other_course_popup_container h3 small {
      display: block;
      padding-top: min(15px, 4%);
      font-size: clamp(1.35rem, 2.9vw, 1.8rem); }
  .other_course_popup_container .regular {
    grid-area: regular;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
  .other_course_popup_container .course_arrow {
    grid-area: arrow;
    width: clamp(22px, 4vw, 42px); }
  .other_course_popup_container .actual {
    grid-area: actual;
    font-size: clamp(2.3rem, 6vw, 4rem); }
  .other_course_popup_container .course_cashback {
    grid-area: cashback;
    font-size: clamp(1.3rem, 3vw, 2rem); }

.detailed_list_pdf {
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  width: fit-content;
  padding: 20px 60px;
  margin: auto;
  border-radius: 40px;
  background: #FF5584;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #fff; }

.bg_line.course_1 {
  top: 2%;
  left: 0; }
  .bg_line.course_1::before {
    bottom: 0;
    left: 0; }
  .bg_line.course_1::after {
    top: 0;
    right: 0; }
.bg_line.course_2 {
  top: 0.5%;
  right: 0; }
  .bg_line.course_2::before {
    bottom: 0;
    right: 0;
    width: 80%; }
  .bg_line.course_2::after {
    display: none; }
.bg_line.course_3 {
  top: 22.5%;
  right: 0; }
  .bg_line.course_3::before {
    top: 0;
    right: 0; }
  .bg_line.course_3::after {
    bottom: 0;
    left: 0; }
.bg_line.course_4 {
  top: 54%;
  left: 0; }
  .bg_line.course_4::before {
    top: 0;
    right: 0; }
  .bg_line.course_4::after {
    bottom: 0;
    left: 0; }
.bg_line.course_5 {
  top: -2%;
  right: 0; }
  .bg_line.course_5::before {
    top: 0;
    left: 0;
    width: 70%; }
  .bg_line.course_5::after {
    bottom: 0;
    right: 0;
    width: 50%; }

.conditions_bg {
  position: relative;
  background: #F8F7F5;
  padding: 10% 0 10%;
  scroll-margin-top: 90px; }

.conditions {
  width: min(1100px, 85%);
  margin: 0 auto; }
  .conditions h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem); }
    .conditions h3::before, .conditions h3::after {
      content: "";
      display: block;
      width: 25%;
      height: 2px;
      background: #333333; }

.conditions_list {
  display: flex;
  justify-content: space-between;
  padding-top: 7%; }

.conditions_list_inner {
  width: min(500px, 48%);
  padding-bottom: 3%;
  background: #fff;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1); }
  .conditions_list_inner h4 {
    position: relative;
    padding: 5%;
    font-size: clamp(1.5rem, 2.1vw, 1.7rem);
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    z-index: 1; }
    .conditions_list_inner h4::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 15%;
      display: block;
      width: auto;
      height: 70%;
      margin: auto;
      mix-blend-mode: screen;
      z-index: -1; }

.conditions_list_desc {
  padding-top: 4%;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center; }

.conditions_list_inner ul {
  width: fit-content;
  padding-top: 3%;
  margin: 0 auto; }
.conditions_list_inner li {
  display: flex;
  align-items: center;
  padding: 5% 0;
  font-size: 1.1rem;
  font-weight: 700; }
  .conditions_list_inner li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: auto;
    padding-right: 10px;
    aspect-ratio: 23 / 20; }

.target h4 {
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%); }
  .target h4::before {
    aspect-ratio: 65 / 55;
    background: url("../img/icon_check.svg") no-repeat;
    background-size: contain; }
.target .conditions_list_desc {
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }
.target li::before {
  background: url("../img/icon_check.svg") no-repeat;
  background-size: contain; }

.target_note {
  width: 85%;
  padding-top: 4%;
  margin: 0 auto;
  font-weight: 400;
  line-height: 130%; }

.na h4 {
  background: #54C5BA; }
  .na h4::before {
    aspect-ratio: 1 / 1;
    background: url("../img/icon_x.svg") no-repeat;
    background-size: contain; }
.na .conditions_list_desc {
  color: #54C5BA; }
.na li::before {
  background: url("../img/icon_x.svg") no-repeat;
  background-size: contain; }

.conditions_noto_wrap {
  display: flex;
  align-items: flex-start;
  padding-top: 5%; }
  .conditions_noto_wrap h5 {
    padding: 1% 3%;
    margin-right: 4%;
    border: 1px solid #333333;
    border-radius: 5px;
    background: #fff;
    font-size: clamp(1.3rem, 2.2vw, 1.5rem);
    letter-spacing: 1px; }
  .conditions_noto_wrap li {
    line-height: 180%; }

@media (max-width: 1100px) {
  .Course {
    margin-top: 50px; }

  .course_list_wrap {
    padding-top: 20px; }
    .course_list_wrap .bg {
      grid-template-columns: 5% 30% 8% 44% 5%; }

  .course_opt {
    flex-flow: wrap; }
    .course_opt li {
      grid-template-columns: 19% 11% 12% 44%;
      width: 92%;
      padding: 0 4% 4%;
      margin: 5% auto 0; }

  .course_opt_img {
    width: max(51px, 56%); }

  .course_opt_intro {
    font-size: max(1rem, 2.4vw); }

  .course_opt h3 {
    padding-top: 0;
    font-size: max(1.2rem, 2.8vw);
    line-height: 100%; }

  .course_opt_line {
    font-size: max(1.65rem, 3.2vw); }

  .course_opt .regular {
    font-size: max(1.3rem, 3.8vw); }
  .course_opt .course_arrow {
    width: max(27px, 5vw); }
  .course_opt .actual {
    font-size: max(2.3rem, 7vw); }
  .course_opt .course_cashback {
    font-size: max(1.4rem, 3.6vw); }

  .popup_container {
    height: 65%;
    padding: 6% 4%; }

  .popup_close {
    position: fixed;
    bottom: 18%; }

  .other_course_popup_container {
    width: min(780px, 90%); }
    .other_course_popup_container li {
      grid-template-areas: "title title title title title" ". regular arrow actual ." ". cashback cashback cashback .";
      grid-template-columns: auto 23% 9% 42% auto;
      width: 94%;
      padding: 50px 3%;
      margin-bottom: 0; }
      .other_course_popup_container li::after {
        top: auto;
        left: 0;
        right: 0;
        width: 90%;
        height: 1px; }
    .other_course_popup_container h3 {
      line-height: 110%;
      margin: 0 0 20px 0; }

  .bg_line.course_1 {
    top: 1%; }
  .bg_line.course_2, .bg_line.course_3, .bg_line.course_4 {
    display: none; }

  .conditions_list {
    flex-flow: wrap; }

  .conditions_list_inner {
    width: 100%; }

  .conditions_list_inner h4 {
    padding: 20px; }
    .conditions_list_inner h4::before {
      left: 30%; }

  .conditions_list_desc {
    padding-top: 25px;
    line-height: 130%; }

  .conditions_list_inner {
    padding-bottom: 40px; }
    .conditions_list_inner ul {
      padding-top: 12px; }
    .conditions_list_inner li {
      padding: 10px 0 0; }

  .target_note {
    padding-top: 30px; }

  .conditions_noto_wrap {
    flex-flow: column; }
    .conditions_noto_wrap h5 {
      margin: 0 0 10px 0; } }
@media (max-width: 600px) {
  .Course {
    background: none; }
    .Course::before {
      display: none; }
    .Course h2 {
      font-size: 2.25rem;
      letter-spacing: 0; }

  .course_list_wrap .bg {
    grid-template-areas: "grid_title grid_title grid_title" "grid_regular grid_arrow grid_actual" "grid_cashback grid_cashback grid_cashback" "grid_open grid_open grid_open";
    grid-template-columns: 38% 8% 50%;
    width: min(450px, 96%);
    padding: 4% 2%; }

  .list-title_wrap {
    flex-wrap: wrap; }

  .course_img {
    margin: 0; }

  .course_list_wrap h3 {
    width: 100%;
    text-align: center; }
  .course_list_wrap p {
    letter-spacing: 0; }

  .regular::before {
    font-weight: 500; }

  .course_opt {
    width: 100%; }
    .course_opt li {
      grid-template-areas: "grid_opt_img grid_intro grid_intro grid_intro" "grid_title grid_title grid_title grid_title" "grid_regular grid_regular grid_arrow grid_actual" "grid_cashback grid_cashback grid_cashback grid_cashback" "grid_open grid_open grid_open grid_open";
      grid-template-columns: 19% 19% 12% 50%;
      width: min(450px, 96%);
      padding: 0 2% 4%; }

  .popup_open {
    width: 100px;
    padding: 2%;
    margin: 5% 0 0 auto;
    border: 1px solid #333333; }
    .popup_open::after {
      width: 10%; }

  .popup_container {
    width: 88%;
    height: 66%;
    max-height: none;
    padding: 8% 3%;
    margin: auto auto 30%; }

  .course_list_wrap .course_period {
    padding: 5px 0;
    letter-spacing: 2px; }

  .popup_close {
    bottom: 10%; }

  .other_courses_intro {
    margin-top: 30px;
    font-weight: 500;
    line-height: 120%; }

  .other_courses_intro::before, .other_courses_intro::after {
    width: 35px; }

  .other_popup_open {
    padding: 20px 20%;
    margin: 10px auto; }

  .other_course_popup_container {
    width: 94%; }
    .other_course_popup_container li {
      grid-template-areas: "title title title" "regular arrow actual" "cashback cashback cashback";
      grid-template-columns: 39% 8% 53%; }
    .other_course_popup_container .course_cashback {
      padding: 4px 0; }

  .detailed_list_pdf {
    padding: 13px 30px; }

  .bg_line.course_1, .bg_line.course_5 {
    display: none; }

  .conditions_bg {
    background: #fff;
    padding: 0 0 30px; }

  .conditions {
    width: 100%; }
    .conditions h3 {
      padding: 82px 0 32px;
      background: #F8F7F5; }

  .conditions h3::before, .conditions h3::after {
    width: 15%; }

  .conditions_list {
    padding: 0; }

  .conditions_list_inner {
    box-shadow: none; }
    .conditions_list_inner h4::before {
      left: 13%; }

  .target_note {
    width: min(450px, 90%); }

  .conditions_noto_wrap {
    width: min(450px, 90%);
    padding: 30px 0 40px;
    margin: 0 auto;
    font-weight: 400; }
    .conditions_noto_wrap h5 {
      width: 100%;
      padding: 8px 0;
      text-align: center; } }
.Flow {
  position: relative;
  padding-top: 9%;
  background: linear-gradient(80deg, #fccda4 0%, #fff3ef 50%, #fca3bb 100%); }
  .Flow h2::after {
    content: "FLOW"; }

.flow_wrap {
  position: relative;
  padding-top: 7%;
  width: min(1200px, 85%);
  margin: 0 auto;
  z-index: 1; }
  .flow_wrap li {
    display: grid;
    grid-template-areas: "grid_img grid_title grid_text";
    grid-template-columns: 13% 30% 53%;
    column-gap: 2%;
    align-items: center;
    padding: 2%;
    background: #fff; }
    .flow_wrap li img {
      grid-area: grid_img;
      width: min(145px, 9vw);
      margin: 0 auto; }
    .flow_wrap li h3 {
      grid-area: grid_title;
      font-size: clamp(1.4rem, 2.1vw, 1.6rem);
      line-height: 140%;
      letter-spacing: 1px; }
      .flow_wrap li h3 span {
        display: inline-block; }
    .flow_wrap li p {
      grid-area: grid_text; }
  .flow_wrap .arrow {
    background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
    width: 55px;
    height: 29px;
    padding: 0;
    margin: 1% auto;
    justify-content: center;
    clip-path: polygon(100% 0, 0 0, 50% 100%); }
  .flow_wrap .flow_cashback {
    display: block;
    justify-content: center;
    column-gap: 0;
    padding: 0 0 20px;
    background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 1px; }
    .flow_wrap .flow_cashback span {
      display: inline-block;
      font-size: clamp(3rem, 5vw, 3.6rem);
      transform: translateY(6px); }

.all_cashback {
  padding: 3.5%;
  margin-top: 8%;
  background: url("../img/all_cashback_bg_pc.svg") no-repeat;
  background-size: cover;
  background-position: center center; }
  .all_cashback p {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    letter-spacing: 0; }
  .all_cashback .white_bg_grad {
    padding: 0.5% 1%;
    margin-right: 1%;
    font-size: clamp(2rem, 4vw, 3rem);
    vertical-align: super; }
  .all_cashback .big {
    font-size: clamp(5.35rem, 8vw, 6.3rem);
    letter-spacing: -2px; }

.bg_line.flow_1 {
  top: -1%;
  left: 0; }
  .bg_line.flow_1::before {
    bottom: 0;
    right: 0;
    width: 70%; }
  .bg_line.flow_1::after {
    top: 0;
    left: 0;
    width: 50%; }
.bg_line.flow_2 {
  top: 22%;
  right: 0; }
  .bg_line.flow_2::before {
    top: 0;
    right: 0; }
  .bg_line.flow_2::after {
    bottom: 0;
    left: 0; }
.bg_line.flow_3 {
  top: 60%;
  left: 0; }
  .bg_line.flow_3::before {
    top: 0;
    right: 0; }
  .bg_line.flow_3::after {
    bottom: 0;
    left: 0; }
.bg_line.flow_4 {
  top: 86%;
  right: 0; }
  .bg_line.flow_4::before {
    top: 0;
    right: 0; }
  .bg_line.flow_4::after {
    bottom: 0;
    left: 0; }

@media (max-width: 1100px) {
  .flow_wrap li {
    grid-template-areas: "grid_img grid_title" "grid_img grid_text";
    grid-template-columns: 20% 78%; }
    .flow_wrap li img {
      width: max(68px, 11vw); }

  .bg_line.flow_2, .bg_line.flow_3, .bg_line.flow_4 {
    display: none; } }
@media (max-width: 600px) {
  .Flow {
    padding-top: 70px; }
    .Flow::before {
      content: "";
      position: absolute;
      top: -0.3px;
      left: 0;
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 0.1763;
      background: #fff;
      clip-path: polygon(0 0, 100% 0, 0 100%); }

  .flow_wrap {
    width: 94%; }
    .flow_wrap li {
      grid-template-areas: "grid_img grid_title" "grid_text grid_text";
      grid-template-columns: 23% 77%;
      column-gap: 0;
      padding: 4%; }
      .flow_wrap li h3 {
        letter-spacing: 0; }
      .flow_wrap li p {
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid #A8A8A8; }
    .flow_wrap .flow_cashback {
      padding: 5px 10px;
      line-height: 150%; }

  .all_cashback {
    padding: 50px 2% 35px;
    margin-top: 60px;
    background: url("../img/all_cashback_bg_sp.svg") no-repeat;
    background-size: 100%; }
    .all_cashback p {
      line-height: 120%; }
    .all_cashback .white_bg_grad {
      padding: 9px; }
    .all_cashback .big {
      display: inline-block;
      transform: translateY(5px); }

  .bg_line.flow_1 {
    top: 10px;
    width: 55%; } }
.Faq {
  padding-top: 10%; }
  .Faq h2::after {
    content: "FAQ"; }

.faq_tab_wrap {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-flow: wrap;
  width: min(1200px, 85%);
  padding-top: 8%;
  margin: 0 auto; }

.tab_item {
  position: relative;
  width: calc(80%/3);
  padding: 1.5%;
  border-radius: 50px;
  background-color: #A8A8A8;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 110%; }
  .tab_item:hover {
    opacity: .7; }

input[name="tab_item"] {
  display: none; }

.tab_content {
  display: none;
  width: 100%;
  padding: 1% 4%;
  margin-top: 4%;
  background: #fff;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .tab_content li {
    padding: 3% 0;
    border-bottom: 1px solid #A8A8A8; }
    .tab_content li:last-child {
      border: none; }
    .tab_content li p {
      display: flex;
      padding: 7px 0;
      line-height: 180%; }
    .tab_content li p:first-child {
      font-size: 1.1rem;
      font-weight: 700; }
      .tab_content li p:first-child::before {
        content: "Q.";
        color: #FF5584; }
    .tab_content li p:last-child::before {
      content: "A.";
      color: #FFA351; }
    .tab_content li p:first-child::before, .tab_content li p:last-child::before {
      padding: 0 2%;
      font-family: "Outfit", serif;
      font-size: 2rem; }

#faq_application:checked ~ #faq_application_content,
#fap_conditions:checked ~ #fap_conditions_content,
#faq_jobchange:checked ~ #faq_jobchange_content {
  display: block; }

.faq_tab_wrap input:checked + .tab_item {
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%); }

.faq_tab_wrap input:checked + .tab_item::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 98%;
  display: block;
  width: 5%;
  height: auto;
  aspect-ratio: 17 / 15;
  margin: 0 auto;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%); }

@media (max-width: 1100px) {
  .Faq {
    padding-top: 120px; } }
@media (max-width: 600px) {
  .faq_tab_wrap {
    width: 100%;
    padding-top: 65px; }

  .tab_item {
    width: calc(97% / 3);
    padding: 1.2% 0;
    border-radius: 20px; }

  .faq_tab_wrap input:checked + .tab_item::after {
    width: 9%; }

  .tab_content {
    margin-top: 30px;
    padding: 1% 2% 90px;
    box-shadow: none; } }
.Inquiry {
  position: relative;
  padding-top: 10%; }
  .Inquiry::before, .Inquiry::after {
    content: "";
    position: absolute;
    top: 40%;
    display: block;
    height: auto; }
  .Inquiry::before {
    right: 71%;
    width: min(293px, 19%);
    aspect-ratio: 293 / 431;
    background: url("../img/inquiry_img1.svg") no-repeat;
    background-size: contain; }
  .Inquiry::after {
    left: 71%;
    width: min(309px, 20%);
    aspect-ratio: 309 / 437;
    background: url("../img/inquiry_img2.svg") no-repeat;
    background-size: contain; }

.Inquiry h3 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  text-align: center;
  line-height: 110%; }
  .Inquiry h3 small {
    font-size: clamp(1.5rem, 2.8vw, 2.3rem); }
  .Inquiry h3 .white_bg_grad {
    padding: 0 1%;
    margin-right: 1%;
    line-height: 180%; }

.inquiry_bg {
  position: relative;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 100%);
  padding: 3%;
  z-index: -1; }

.bg_line.inquiry_1 {
  top: 15%;
  left: 0; }
  .bg_line.inquiry_1::before {
    top: 0;
    right: 0; }
  .bg_line.inquiry_1::after {
    bottom: 0;
    left: 0; }
.bg_line.inquiry_2 {
  bottom: 15%;
  right: 0; }
  .bg_line.inquiry_2::before {
    top: 0;
    right: 0; }
  .bg_line.inquiry_2::after {
    bottom: 0;
    left: 0; }

.inquiry_desc {
  position: relative;
  width: min(625px, 40%);
  margin: 3% auto; }

.inquiry_btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  padding: 12px 80px;
  margin: 0 auto;
  border-radius: 100px;
  background: linear-gradient(60deg, #ff5584 0%, #ffa351 50%, #ff5584 100%);
  background-size: 200% 100%;
  font-size: clamp(1.5rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  transition: .3s; }
  .inquiry_btn span {
    padding-bottom: 1%;
    font-size: clamp(1rem, 1.6vw, 1.3rem); }
  .inquiry_btn:hover {
    background-position: 100% 0; }

@media (max-width: 1100px) {
  .Inquiry::before {
    right: 78%; }
  .Inquiry::after {
    left: 78%; }

  .inquiry_desc {
    width: 52%; } }
@media (max-width: 600px) {
  .Inquiry {
    padding-top: 0; }

  .inquiry_bg {
    padding: 50px 0; }

  .Inquiry h3 .white_bg_grad {
    line-height: 160%; }
  .Inquiry::before, .Inquiry::after {
    top: 245px; }
  .Inquiry::before {
    right: 54%;
    width: min(152px, 45%); }
  .Inquiry::after {
    left: 54%;
    width: min(161px, 48%); }

  .bg_line.inquiry_1 {
    top: 8%; }
  .bg_line.inquiry_2 {
    bottom: 9%; }

  .inquiry_desc {
    width: min(450px, 90%);
    margin: 213px auto 30px; }

  .inquiry_btn {
    width: min(450px, 90%);
    padding: 12px 0; } }
.Company {
  position: relative;
  padding: 10% 0;
  margin-top: 3%;
  background: linear-gradient(60deg, #fca3bb 0%, #fff3ef 50%, #fccda4 100%); }
  .Company::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.1763;
    background: #F8F7F5;
    clip-path: polygon(0 0, 100% 0, 0 100%); }
  .Company h2::after {
    content: "COMPANY";
    font-size: clamp(4.4rem, 13vw, 12.5rem); }

.company_info_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: min(1200px, 85%);
  margin: 7% auto 0; }
  .company_info_wrap li {
    display: grid;
    grid-template-areas: "logo" "name" "info" "map";
    align-items: center;
    grid-template-rows: 19% 10% 27% 44%;
    width: 49%;
    height: auto;
    aspect-ratio: 580 / 858;
    padding-top: 1%;
    background: #fff; }
  .company_info_wrap img {
    grid-area: logo; }

.info_yconnect_logo {
  width: min(388px, 66%);
  margin: 0 auto; }

.info_dhs_logo {
  width: min(271px, 46%);
  margin: 0 auto; }

.company_info_wrap h3 {
  grid-area: name;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center; }
.company_info_wrap table {
  grid-area: info;
  width: min(509px, 97%);
  margin: 0 auto;
  text-align: left;
  letter-spacing: 1px; }
.company_info_wrap th {
  width: 20%;
  padding: 2% 0 2% 2%;
  vertical-align: middle;
  font-weight: 500; }
.company_info_wrap .yconnect_info th {
  border-bottom: 2px solid #33AEDF; }
.company_info_wrap .dhs_info th {
  border-bottom: 2px solid #FFA351; }
.company_info_wrap td {
  padding: 2% 0 2% 2%;
  border-bottom: 1px solid #A8A8A8;
  font-weight: 400; }

.map {
  grid-area: map;
  width: 100%;
  height: 100%; }

.bg_line.company_1 {
  top: 13%;
  left: 0; }
  .bg_line.company_1::before {
    display: none; }
  .bg_line.company_1::after {
    top: 0;
    left: 0;
    width: 50%; }
.bg_line.company_2 {
  top: 0;
  right: 0; }
  .bg_line.company_2::before {
    top: 0;
    left: 0; }
  .bg_line.company_2::after {
    bottom: 0;
    right: 0;
    width: 60%; }

@media (max-width: 1100px) {
  .Company {
    margin-top: 110px;
    padding: 100px 0 0; }

  .company_info_wrap {
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    background: #fff; }
    .company_info_wrap li {
      grid-template-rows: none;
      grid-row-gap: 10px;
      width: min(500px, 100%);
      padding-top: 50px;
      margin: 0 auto;
      aspect-ratio: auto; }
    .company_info_wrap h3 {
      padding: 10px 0; }

  .map {
    width: min(509px, 97%);
    height: auto;
    margin: 0 auto;
    aspect-ratio: 58 / 37; } }
@media (max-width: 600px) {
  .Company {
    padding-top: 80px; }

  .company_info_wrap {
    margin-top: 42px; }
    .company_info_wrap th {
      width: 25%; }

  .bg_line.company_1 {
    display: none; }
  .bg_line.company_2 {
    top: -2%; } }
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row-reverse wrap;
  width: min(1200px, 85%);
  padding: 3% 0;
  margin: 0 auto; }

.footer_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center; }
.footer_nav li {
  padding: 2% 0 2% 50px; }
.footer_nav a {
  font-size: 1rem;
  letter-spacing: 1px;
  transition: .3s; }
  .footer_nav a:hover {
    color: #FF5584; }

.copyright {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 400; }

@media (max-width: 1100px) {
  footer {
    justify-content: center;
    width: 100%;
    padding-bottom: 140px;
    background: #fff; }

  .footer_nav {
    display: none; } }
@media (max-width: 600px) {
  footer {
    padding-bottom: 80px; } }
