/* =======================================
  animation
======================================= */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%,
  to {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

/* =======================================
  common
======================================= */
.wow {
  visibility: hidden;
}

b {
  font-weight: 800;
}

.mo_show {
  display: none !important;
}

.ria {
  font-family: 'RiaSans';
}

.face {
  font-family: 'theFaceShop';
}

.ghana {
  font-family: 'Ghanachoco';
}

.hidden_txt {
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: polygon(0 0, 0 0, 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.align_center {
  align-self: center;
}

.text_wrap {
  font-size: clamp(25px, 6.5vw, 50px);
  font-weight: 400;
}

.title_wrap p:first-child {
  font-family: 'Ghanachoco';
  font-size: clamp(40px, 10.4vw, 80px);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.title_wrap h3 {
  font-family: 'RiaSans';
  font-size: clamp(35px, 9.1vw, 70px);
  letter-spacing: -0.01em;
}

.slide_wrap {
  position: relative;
}

/* =======================================
  header
======================================= */
.header_wrap {
  position: sticky;
  top: 0;
  z-index: 10;
}

.header_wrap.pc .header,
.header_wrap.mo .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_wrap.pc,
.mo .header .top {
  background-color: rgb(253, 208, 0);
}

/* header - pc */
.header_wrap.pc.sticky {
  background-color: rgba(253, 208, 0, 0.8);
}

.pc .header {
  max-width: 1320px;
  margin: 0 auto;
  height: 90px;
  padding: 25px 20px;
}

.pc .header img {
  width: 11%;
  height: auto;
  flex-shrink: 0;
}

.pc .header .tab {
  display: flex;
  justify-content: space-between;
  flex-grow: 0.6;
}

.pc .header .tab a {
  cursor: pointer;
  font-size: clamp(20px, 2.2vw, 25px);
}

/* header - mo */
.header_wrap.mo {
  display: none;
}

.mo .header .top {
  padding: 3.3% 4.6%;
  height: clamp(49px, 12.6vw, 97px);
}

.mo .header .top > img:nth-child(1) {
  width: clamp(86px, 22.3vw, 171px);
}

.mo .header .top > img:nth-child(2) {
  position: absolute;
  height: clamp(24px, 6.1vw, 47px);
  left: 50%;
  transform: translateX(-50%);
}

.mo .header .tab {
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  position: absolute;
  top: clamp(49px, 12.6vw, 97px);
  transition: all 2s;
  display: none;
}

.mo .tab.active {
  display: block;
}

.btn_menu img {
  width: clamp(25px, 4.6vw, 35px);
}

.btn_menu img:last-child,
.btn_menu.open img:first-child {
  display: none;
}

.btn_menu img:first-child,
.btn_menu.open img:last-child {
  display: block;
}

.mo .tab a {
  display: block;
  width: 100%;
  font-size: clamp(20px, 5.2vw, 40px);
  color: #fff;
  padding: 7% 0;
}

.mo .tab a:first-child {
  padding-top: 10%;
}

.mo .tab a:last-child {
  padding-bottom: 10%;
}

/* =======================================
  landing
======================================= */
/* landing common */
[class*='content_'] {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

/* content 01 */
.content_01 {
  background-image: url('../images/landing01.png');
  padding: 110px 3% 190px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(23px, 5.9vw, 46px);
}

.content_01 .wow + .wow {
  margin-top: 1%;
}

.content_01 .wow:nth-child(3) {
  margin: -1% 0 3%;
}

.content_01 .wow.mo_show {
  margin-top: 100px;
}

/* content 02 */
.content_02 {
  background-image: url('../images/landing02.png');
  padding: 190px 3% 160px;
}

.content_02 .ani_wrap {
  width: 100%;
  height: clamp(391px, 32.8vw, 631px);
  margin: -8% auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 6%;
}

.content_02 .img {
  width: 100%;
  max-width: 1350px;
  height: 0;
  transition: 2s;
  transform-origin: bottom left;
  background-image: url('../images/landing02_03.png');
  background-position: bottom left;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}

.content_02 .img.ani {
  height: 631px;
}

.content_02 .text_wrap {
  font-weight: 500;
  line-height: 1.2;
  color: #462400;
}

.content_02 .text_wrap div {
  color: #fff;
  font-weight: 800;
  line-height: 1.6;
  margin-top: 1%;
}

/* content 03 */
.content_03 {
  background-image: url('../images/landing03.png');
  padding: 170px 3%;
}

.content_03 .youtube {
  max-width: 858px;
  width: 100%;
  border: clamp(5px, 1.3vw, 10px) solid transparent;
  background-image: linear-gradient(
    60deg,
    rgba(246, 126, 0, 1) 0%,
    rgba(255, 219, 20, 1) 15%,
    rgba(255, 252, 177, 1) 41%,
    rgba(255, 253, 215, 1) 51%,
    rgba(255, 252, 177, 1) 55%,
    rgba(255, 219, 20, 1) 70%,
    rgba(245, 122, 0, 1) 100%
  );
  background-origin: border-box;
  position: relative;
  z-index: 1;
}

.content_03 .text_wrap {
  color: #fff;
  font-size: clamp(18px, 4.6vw, 35px);
  line-height: 1.28;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

.content_03 .text_wrap .wow {
  font-size: clamp(33px, 7.5vw, 65px);
  margin-top: 25px;
}

.content_03 .text_wrap .wow span {
  color: #ffd823;
}

.firework div {
  position: absolute;
}

.firework div img {
  opacity: 0.6;
}

.firework div:first-child {
  top: 0;
  right: 0;
}

.firework div:last-child {
  bottom: 0;
  left: 0;
  mix-blend-mode: color-dodge;
}

/* content 04 */
.content_04 {
  background-image: url('../images/landing04.png');
  padding: 150px 0 450px;
}

.content_04 .text_wrap div {
  font-size: clamp(20px, 5.2vw, 40px);
  line-height: 1.12;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.content_04 div > b {
  font-size: clamp(23px, 5.9vw, 45px);
}

.content_04 .face {
  margin-top: 20px;
  color: #0e20c4;
}

/* content 05 */
.content_05 {
  background-image: url('../images/landing05.png');
  padding: 140px 3% 190px;
}

.content_05 .title_wrap {
  margin-bottom: 30px;
}

.content_05 .title_wrap p:first-child {
  color: #e89900;
}

.content_05 .title_wrap h3 span:first-child {
  margin-bottom: 37px;
  background: linear-gradient(178deg, #201f1f 54%, #000000 46%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_05 .title_wrap h3 span:last-child {
  background: linear-gradient(178deg, #fff 54%, #fff3d8 46%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_05 .box_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.content_05 .text_wrap p:nth-child(1) {
  line-height: 1.32;
  color: #33270f;
}

.content_05 .text_wrap div p {
  margin: 1.5% 0;
}

.content_05 .text_wrap span {
  color: #fff;
  background: #ff3600;
  padding: 0.5% 2%;
}

.content_05 .text_wrap .face {
  font-size: clamp(33px, 8.5vw, 65px);
  color: #33270f;
}

/* content 06 */
.content_06 {
  background-image: url('../images/landing06.png');
  padding: 140px 3% 180px;
  color: #fff;
}

.content_06 .title_wrap {
  margin-bottom: 37px;
}

.content_06 .title_wrap p:first-child {
  color: #ffde00;
}

.content_06 .title_wrap h3 {
  background: linear-gradient(178deg, #eae4bc 60%, #e6dca2 40%);
  color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 30px;
}

.content_06 .title_wrap h3 span {
  background: linear-gradient(178deg, #ffde00 60%, #faa800 40%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_06 .title_wrap p:last-child {
  font-size: clamp(15px, 3.9vw, 30px);
}

.content_06 .title_wrap p:last-child b {
  font-size: clamp(19px, 4.9vw, 38px);
  color: #ffde00;
}

.content_06 .img_wrap {
  margin-bottom: 70px;
}

.content_06 .info_text {
  font-size: clamp(15px, 3.1vw, 20px);
  margin-top: 15px;
}

.content_06 .menu_wrap {
  display: flex;
  margin-bottom: 45px;
}

.content_06 .menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 260px));
  gap: 18px;
}

.content_06 .menu div {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
  gap: 10px;
}

.content_06 .menu p {
  font-size: clamp(12px, 3vw, 23px);
  font-weight: 400;
  color: #fff;
}

.content_06 .text_wrap {
  font-size: clamp(23px, 5.9vw, 45px);
  line-height: 1.8;
}

.content_06 .text_wrap span {
  background: #ff3600;
  padding: 0.5% 2%;
}

.content_06 .text_wrap p b {
  font-size: clamp(25px, 6.5vw, 50px);
  line-height: 1.44;
  color: #fff000;
}

/* content 07 */
.content_07 {
  background-image: url('../images/landing07.png');
  padding: 7.9% 0 10.5%;
}

.content_07 .title_wrap {
  margin-bottom: 80px;
}

.content_07 .title_wrap p:first-child {
  color: #ffc272;
}

.check_swiper {
  width: 100%;
  height: 100%;
}

.check_swiper img {
  width: 100%;
}

/* content 08 */
.content_08 {
  background-image: url('../images/landing08.png');
  padding: 160px 3% 170px;
}

.content_08 .text_wrap {
  margin-bottom: 54px;
}

.content_08 .text_wrap p {
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: 600;
  color: #fff;
}

.content_08 .youtube {
  max-width: 869px;
  width: 100%;
}

/* content 09 */
.content_09 {
  background-image: url('../images/landing09.png');
  padding: 170px 3% 180px;
  color: #fff;
}

.content_09 .text_wrap {
  margin: 14px 0 50px;
}

.content_09 .text_wrap span {
  font-size: clamp(15px, 3.9vw, 30px);
  font-weight: 600;
  color: #0c0808;
  background: #ffd823;
  padding: 0.5% 1%;
}

.content_09 .strategy_wrap {
  width: 100%;
  max-width: 1130px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 74px;
}

.content_09 .flex_wrap {
  width: 100%;
  max-width: 1156px;
  padding: 45px 85px;
  background-color: rgba(255, 255, 255, 0.25);
  font-size: clamp(20px, 3.3vw, 25px);
  font-weight: 400;
}

.content_09 .flex_wrap .wow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content_09 .flex_wrap span {
  font-weight: 600;
}

/* content 10 */
.content_10 {
  background-image: url('../images/landing10.png');
  padding: 130px 3% 210px;
  color: #fff;
}

.content_10 .text_wrap {
  margin-bottom: 50px;
}

.content_10 .text_wrap p {
  color: #bc6b0d;
  font-size: clamp(20px, 5.2vw, 40px);
  letter-spacing: -0.01em;
  font-weight: 800;
  margin-bottom: 14px;
}

.content_10 .ria {
  font-size: clamp(35px, 9.1vw, 70px);
}

.content_10 .ria span:last-child {
  background: linear-gradient(174.5deg, #181818 47%, #131313 32%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_10 .ria span:first-child {
  background: linear-gradient(
    178deg,
    rgba(255, 138, 0, 1) 46%,
    rgba(255, 115, 0, 1) 46%,
    rgba(255, 124, 0, 1) 75%,
    rgba(255, 136, 0, 1) 75%,
    rgba(255, 138, 0, 1) 84%
  );
  color: transparent;
  -webkit-background-clip: text;
}

.strategy_swiper {
  width: 100%;
  max-width: 1100px;
  height: 380px;
  overflow: hidden;
}

.slide_wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -45px;
}

.slide_wrap .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.4;
  width: 14px;
  height: 14px;
  margin: 0 13px !important;
}

.slide_wrap .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.content_10 .swiper-button-next,
.content_10 .swiper-button-prev {
  width: 25px;
  height: 44px;
  background-image: url('../images/swiper_arrow.png');
  position: absolute;
}

.content_10 .swiper-button-next::after,
.content_10 .swiper-button-prev::after {
  display: none;
}

.content_10 .swiper-button-next {
  right: -95px;
}

.content_10 .swiper-button-prev {
  left: -95px;
  transform: rotate(180deg);
}

/* content 11 */
.content_11 {
  background-image: url('../images/landing11.png');
  padding: 150px 3% 0;
  color: #fff;
  align-items: center;
}

.content_11 .text_wrap {
  margin-bottom: 90px;
}

.content_11 .ria {
  font-size: clamp(29px, 7.4vw, 57px);
  background: linear-gradient(93deg, rgba(228, 163, 54, 1) 0%, rgba(255, 233, 172, 1) 100%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_11 .ria::after {
  content: '';
  display: block;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}

.content_11 .ria span {
  font-size: clamp(43px, 11.1vw, 85px);
}

.content_11 ul {
  font-size: clamp(18px, 4.6vw, 34px);
  font-weight: 600;
  text-align: left;
}

.content_11 ul li {
  position: relative;
  padding-left: 73px;
}

.content_11 ul li:not(:last-child) {
  margin-bottom: 27px;
}

.content_11 ul li::before {
  content: '';
  display: inline-block;
  width: 53px;
  height: 46px;
  background-image: url('../images/landing11_01.png');
  background-size: cover;
  position: absolute;
  left: 0;
}

.content_11 ul span {
  font-weight: 700;
  color: #ffda0f;
}

.content_11 .img_wrap {
  margin-bottom: -4px;
}

/* content 12 */
.content_12 {
  background-image: url('../images/landing12.png');
  padding: 100px 0 100px 3%;
  color: #fff;
}

.content_12 > div {
  max-width: 1920px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
}

.content_12 .text_wrap {
  text-align: right;
}

.content_12 .text_wrap h2 {
  font-size: clamp(20px, 5.2vw, 40px);
}

.content_12 .ria {
  font-size: clamp(23px, 6vw, 46px);
}

.content_12 .ria p {
  font-size: clamp(40px, 4.2vw, 80px);
}

.content_12 .ria span {
  color: #ffd40a;
}

.content_12 .slide_wrap {
  width: 50%;
}

.custom_swiper {
  width: 100%;
  overflow: hidden;
}

.custom_swiper .swiper-slide {
  background-color: #321a08;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.5);
}

.custom_swiper .swiper-slide img {
  width: 100%;
  border: 5px solid #fff;
  border-radius: 10px;
  opacity: 0.3;
}

.custom_swiper .swiper-slide-active img {
  opacity: 1;
  border-color: #ffee8e;
}

/* content 13 */
.content_13 {
  background-image: url('../images/landing13.png');
  padding: 160px 3%;
  color: #fff;
}

.content_13 .text_wrap {
  margin-bottom: 25px;
}

.content_13 .text_wrap p {
  font-size: clamp(18px, 4.6vw, 35px);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.content_13 .ria {
  font-size: clamp(27px, 7.2vw, 55px);
}

.content_13 span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 30%, rgba(255, 232, 37, 1) 100%);
  color: transparent;
  -webkit-background-clip: text;
}

.content_13 .wow p {
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: 600;
}

.content_13 .wow p span {
  font-size: clamp(28px, 7.2vw, 55px);
  font-weight: 900;
}

/* content apply */
.content_apply {
  padding: 0;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background-color: #fabc01;
  align-items: center;
}

.inquiry_wrap {
  max-width: 1320px;
  width: 100%;
  padding: 21px 10px;
}

.inquiry_wrap .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.inquiry_wrap .mo_input {
  display: none;
}

.inquiry_wrap .input-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.inquiry_wrap .input_box {
  background-color: #fff;
  border: 0;
  border-radius: 5px;
  width: 210px;
  height: 45px;
  padding: 0 20px;
  font-size: 18px;
  color: #000;
}

.inquiry_wrap .input_box::placeholder {
  color: #333;
  font-size: 18px;
}

.inquiry_wrap .input-wrap .input_box:first-child {
  width: 150px;
}
.inquiry_wrap .input_box:nth-child(3) {
  width: 185px;
}
.inquiry_wrap .input_box.pc_show,
.inquiry_wrap .input_box.mo_show {
  width: 230px;
}

.inquiry_wrap .submit_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
}

.inquiry_wrap .submit_wrap .agree_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
}

.inquiry_wrap .submit_wrap .agree_wrap .agree_box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.inquiry_wrap .submit_wrap .agree_wrap .agree_box input {
  width: 18px;
  height: 18px;
}

.inquiry_wrap .submit_wrap .agree_wrap .agree {
  font-size: 15px;
  color: #222;
  font-weight: 500;
  line-height: 1;
}

.inquiry_wrap .submit_wrap .btn_apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 45px;
  background: #ee2d00;
  border: 1px solid #ee2d00;
  border-radius: 5px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding-top: 5px;
}

/* 반응형 */
@media screen and (max-width: 1600px) {
  /* content 02 */
  .content_02 .ani_wrap {
    margin-top: -1%;
  }
}

@media screen and (max-width: 1280px) {
  /* content 02 */
  .content_02 .img {
    background-size: 100%;
  }

  /* content apply */
  .inquiry_wrap .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .inquiry_wrap .pc_input {
    display: none;
  }

  .inquiry_wrap .mo_input {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  /* =======================================
    common
  ======================================= */
  .pc_show {
    display: none !important;
  }

  .mo_show {
    display: block !important;
  }

  .text_wrap {
    font-size: clamp(25px, 6.5vw, 50px);
    font-weight: 400;
  }

  .title_wrap h3 {
    font-size: clamp(28px, 7.4vw, 57px);
  }

  .title_wrap p:first-child {
    margin-bottom: 15px;
  }

  /* =======================================
    header
  ======================================= */
  /* header - pc */
  .header_wrap.pc {
    display: none;
  }

  /* header - mo */
  .header_wrap.mo {
    display: block;
  }

  /* =======================================
    landing
  ======================================= */
  /* content 01 */
  .content_01 {
    background-image: url('../images/landing01_mo.png');
    padding: 20.9% 4.5% 28.7%;
  }

  .content_01 .wow + .wow {
    margin-top: 3.5%;
  }

  .content_01 .wow:nth-child(3) {
    margin: -1.5% 0 13.5%;
  }

  .content_01 .wow:nth-child(5) {
    margin-top: 9.8%;
  }

  /* content 02 */
  .content_02 {
    background-image: url('../images/landing02_mo.png');
    padding: 20.9% 0 22.2%;
  }

  .content_02 > *:not(.ani_wrap) {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }

  .content_02 .ani_wrap {
    height: clamp(220px, 57.3vw, 440px);
    margin-top: -1.5%;
    padding: 0;
  }

  .content_02 .img {
    background-image: url('../images/landing02_03_mo.png');
  }

  .content_02 .img.ani {
    height: clamp(220px, 57.3vw, 440px);
  }

  .content_02 .text_wrap {
    margin-top: 5.3%;
  }

  /* content 03 */
  .content_03 {
    background-image: url('../images/landing03_mo.png');
    padding: 22.2% 4.5%;
  }

  .content_03 .text_wrap {
    margin-top: 7.2%;
  }

  .content_03 .text_wrap .wow {
    margin-top: 4.3%;
  }

  /* content 04 */
  .content_04 {
    background-image: url('../images/landing04_mo.png');
    padding: 20.9% 4.5% 44.5%;
  }

  .content_04 .text_wrap div {
    margin-bottom: 5.8%;
  }
  .content_04 .text_wrap div:nth-child(2) {
    margin-bottom: 7.2%;
  }

  .content_04 .face {
    margin-top: 4.3%;
  }

  /* content 05 */
  .content_05 {
    background-image: url('../images/landing05_mo.png');
    padding: 20.9% 4.5% 24.8%;
  }

  .content_05 .title_wrap {
    margin-bottom: 6.8%;
  }

  .content_05 .text_wrap div {
    font-size: clamp(18px, 4.9vw, 38px);
    margin-top: 3%;
    margin-bottom: 7.2%;
  }

  .content_05 .text_wrap .face {
    font-size: clamp(28px, 7.2vw, 55px);
  }

  .content_05 .box_wrap {
    grid-template-columns: none;
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: 9.7%;
  }

  /* content 06 */
  .content_06 {
    background-image: url('../images/landing06_mo.png');
    padding: 20.9% 4.5% 24.8%;
  }

  .content_06 .title_wrap {
    margin-bottom: 7.2%;
  }

  .content_06 .title_wrap h3 {
    margin-bottom: 5.8%;
  }

  .content_06 .title_wrap p:last-child {
    font-size: clamp(16px, 4.2vw, 32px);
  }

  .content_06 .title_wrap p:last-child b {
    font-size: clamp(20px, 5.2vw, 41px);
  }

  .content_06 .info_text {
    margin-top: 4.2%;
    font-size: clamp(13px, 3.3vw, 25px);
  }

  .content_06 .menu_wrap {
    flex-direction: column;
    margin-bottom: 10%;
  }

  .content_06 .menu {
    grid-template-columns: repeat(3, minmax(auto, 230px));
    gap: clamp(8px, 2vw, 15px);
  }

  .content_06 .menu div {
    height: clamp(122px, 31.8vw, 244px);
    padding: 12.7% 10% 19.5%;
  }

  .content_06 .menu div:nth-child(2) img {
    width: 84%;
  }

  .content_06 .menu p {
    font-size: clamp(12px, 3.3vw, 24px);
  }

  /* content 07 */
  .content_07 {
    background-image: url('../images/landing07_mo.png');
    padding: 20.9% 0 27%;
  }

  .content_07 .title_wrap h3 {
    font-size: clamp(35px, 9.1vw, 70px);
  }

  /* content 08 */
  .content_08 {
    background-image: url('../images/landing08_mo.png');
    padding: 20.9% 4.5% 24.8%;
  }

  .content_08 .text_wrap {
    margin-bottom: 7.8%;
  }

  .content_08 .youtube {
    padding: 0 1.5%;
  }

  /* content 09 */
  .content_09 {
    background-image: url('../images/landing09_mo.png');
    padding: 20.9% 4.5% 24.8%;
  }

  .content_09 .strategy_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 11.5%;
  }

  .content_09 .strategy_wrap div {
    grid-column: span 2;
  }

  .content_09 .strategy_wrap div:last-child {
    margin-top: -8%;
    grid-column: 2 / span 2;
  }

  .content_09 .strategy_wrap img {
    width: 281px;
  }

  .content_09 .flex_wrap {
    font-size: clamp(15px, 3.9vw, 30px);
    padding: 8.1% 6.5%;
  }

  .content_09 .flex_wrap img {
    margin-right: 0;
  }

  .content_09 .flex_wrap .wow {
    flex-direction: column;
    gap: clamp(15px, 3.9vw, 30px);
  }

  /* content 10 */
  .content_10 {
    background-image: url('../images/landing10_mo.png');
    padding: 20.9% 4.5% 24.8%;
  }

  .strategy_swiper {
    width: 100%;
    height: clamp(430px, 89.2vw, 685px);
  }

  .slide_wrap .swiper-button-prev,
  .slide_wrap .swiper-button-next {
    display: none;
  }

  .slide_wrap .swiper-pagination-bullet {
    width: clamp(12px, 3.1vw, 24px);
    height: clamp(12px, 3.1vw, 24px);
    margin: 0 clamp(11px, 2.9vw, 22px) !important;
  }

  .slide_wrap .swiper-pagination-vertical.swiper-pagination-bullets {
    display: flex;
    top: inherit;
    bottom: -10.3%;
    left: 50%;
    transform: translateX(-50%);
    right: inherit;
  }

  .content_10 .text_wrap p {
    margin-bottom: 20px;
  }

  .content_10 .ria {
    font-size: clamp(25px, 6.5vw, 50px);
  }

  /* content 11 */
  .content_11 {
    background-image: url('../images/landing11_mo.png');
    padding: 20.9% 4.5% 0;
  }

  .content_11 ul {
    width: 93%;
    margin: 0 auto;
  }

  .content_11 ul li {
    position: relative;
    padding-left: 14.3%;
  }

  .content_11 ul li:not(:last-child) {
    margin-bottom: 5.3%;
  }

  .content_11 ul li::before {
    width: clamp(27px, 6.9vw, 53px);
    height: clamp(23px, 6vw, 46px);
  }

  /* content 12 */
  .content_12 {
    background-image: url('../images/landing12_mo.png');
    padding: 20.9% 0;
  }

  .content_12 > div {
    flex-direction: column;
  }

  .content_12 .text_wrap {
    text-align: center;
    margin-bottom: 13.5%;
  }

  .content_12 .text_wrap h2 {
    margin-bottom: 9.1%;
  }

  .content_12 .text_wrap p {
    margin-bottom: 6.9%;
  }

  .content_12 .slide_wrap {
    width: 100%;
  }

  /* content 13 */
  .content_13 {
    background-image: url('../images/landing13_mo.png');
    padding: 20.9% 4.5%;
  }

  .content_13 .text_wrap {
    margin-bottom: 7.8%;
  }

  .content_13 .text_wrap p {
    font-size: clamp(25px, 6.5vw, 49px);
  }

  .content_13 .wow p {
    font-size: clamp(28px, 7.2vw, 55px);
  }

  .content_13 .wow p span {
    font-size: clamp(39px, 10vw, 77px);
  }

  /* content apply */
  .inquiry_wrap .input_box {
    width: clamp(105px, 27.3vw, 210px);
    height: clamp(23px, 5.9vw, 45px);
    padding: 0 3.4%;
    font-size: clamp(9px, 2.3vw, 18px);
  }

  .inquiry_wrap .input-wrap .input_box:first-child {
    width: clamp(80px, 19.5vw, 150px);
  }
  .inquiry_wrap .input_box:nth-child(3) {
    width: clamp(95px, 24.1vw, 185px);
  }
  .inquiry_wrap .input_box.pc_input,
  .inquiry_wrap .input_box.mo_input {
    width: clamp(115px, 29.9vw, 230px);
  }

  .inquiry_wrap .input_box::placeholder {
    font-size: clamp(9px, 2.3vw, 18px);
  }

  .inquiry_wrap .submit_wrap .agree_wrap .agree {
    font-size: clamp(8px, 2vw, 15px);
    text-align: left;
  }

  .inquiry_wrap .submit_wrap .btn_apply {
    width: clamp(85px, 21.5vw, 165px);
    height: clamp(23px, 5.9vw, 45px);
    font-size: clamp(13px, 3.3vw, 25px);
    padding-top: 1%;
  }

  .inquiry_wrap .submit_wrap {
    gap: clamp(10px, 2.6vw, 20px);
  }
}
