body {
  font-family: 'Noto Sans JP';
  font-size: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
}
img { 
  image-rendering: auto;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
.-flex {
  display: flex;
}
.f-wrap {
  flex-wrap: wrap;
}
.sc {
  justify-content: center;
}
.sb {
  justify-content: space-between;
}
.sa {
  justify-content: space-around;
}
.se {
  justify-content: space-evenly;
}
.al-center {
  align-items: center;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mr3{
    margin-right: 3px;
}
.mb10 {
    margin-bottom: 10px;
  }
.mb20 {
  margin-bottom: 20px;
}
.pt20 {
  padding-top: 20px;
}
.logo {
  max-height: 60px;
  max-width: 100%;
  z-index: 9999;
}
.sp-none {
  display: block;
}
.sp-block {
  display: none;
}
ul {
  padding: 0;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}





/*  */
/* ファーストビュー */
.first-view {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  background-image: url("/assets/img/new_graduates/fv_bg_pc.webp?ver=20250109");
  background-blend-mode: luminosity;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* 子要素の絶対配置を可能にする */
  overflow: hidden; /* アニメーションの外側を隠す */
}
.first-view::before { 
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/new_graduates/fv_bg_pc.webp?ver=20250109");
  background-size: cover;
  background-position: center center;
  filter: grayscale(100%); /* 初期状態は白黒 */
  z-index: 0; /* 背景が最背面にくるように設定 */
  animation: colorReveal 2s ease forwards; /* アニメーションの適用 */
}
.first-view .inner {
  position: relative; /* テキストや画像の位置を正しく保つ */
  z-index: 1; /* 背景よりも上に配置 */
}
.first-view .inner .title img {
  width: auto;
  height: 300px;
  margin-top: 120px;
  margin-bottom: 0px;
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(20px); /* 少し下から上がる感じ */
  animation: fadeInImage .4s ease .4s forwards; /* 遅れてフェードイン */
}
@keyframes colorReveal {
  0% {
    filter: grayscale(100%);
    clip-path: inset(0 100% 0 0); /* 背景が全体隠れている状態 */
  }
  100% {
    filter: grayscale(0%);
    clip-path: inset(0 0 0 0); /* 背景が完全に表示される */
  }
}
@keyframes fadeInImage {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  */




/* 英語 */
.first-view .inner .title .img-en {
  height: 200px!important;
  margin-top: 180px;
  margin-bottom: 0px;
}



/* アニメーション（シート内要素） */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン効果を適用するクラス */
.fade-in {
  animation: fade-in 0.6s ease-in-out;
  opacity: 1;
}



/* ディープラスを知る・仕事を知る：コンテンツ */
.new-graduates {
  width: 100%;
  /* position: relative; */
  padding-bottom: 120px;
  overflow: hidden;
}
.first-sect {
  padding-top: 40px;
}
.new-graduates .top-image {
  width: 100%;
  /* position: absolute; */
  top: 0;
  left: 0;
}
.new-graduates .center {
  display: flex;
  justify-content: center;
}
.new-graduates .next-chapter {
  background-image: url(/assets/img/new_graduates/chapter_under.png);
}
.new-graduates .interview {
  background-image: url(/assets/img/new_graduates/interview_under.png);
}
.new-graduates .environment {
  background-image: url(/assets/img/new_graduates/environment_under.png);
}

.new-graduates .elements {
  width: 100%;
  background-repeat: no-repeat;
  /* background-size: contain; */
  background-size: 140%;
  padding-top: 32px;
}
.new-graduates .elements .margin {
  margin-bottom: 80px;
}
.new-graduates .elements .inner .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.new-graduates .elements .inner .title-main h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.new-graduates .elements .inner .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.new-graduates .elements .inner .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.new-graduates .elements .inner .detail p {
  font-size: 20px;
  font-weight: 400;
}
.new-graduates .elements .space {
  display: flex;
  flex-direction: column;
  gap: 80px;
}



.content-format {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.content-format:nth-child(odd) {
  flex-direction: row-reverse; /* 奇数番目の要素だけテキストと画像の位置を逆に */
}
.content-format .front {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: space-between;
  align-items: flex-start;
  height: 405px;
}
.content-format .front .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.content-format .front .text .title {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content-format:nth-child(odd) .front .text .title { /* 偶数番目のcontent-format要素に対するスタイル */
  text-align: right;
}
.content-format .front .text .title h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  color: #888888;
}
.content-format .front .text .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.content-format:nth-child(odd) .front .text .title-main { /* 偶数番目のcontent-format要素内のtitle-mainの子要素を入れ替える */
  display: flex;
  flex-direction: row-reverse;
}
.content-format .front .text .title-main h2 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.content-format .front .text .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.content-format .front .text .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.content-format .front .text .detail p {
  font-size: 16px;
  font-weight: 400;
}
.content-format .image {
  width: 50%;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}
.content-format .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-format .front a {
  width: 100%;
}
.content-format .front a .view-more {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
  position: relative;
  border-radius: 100px;
  box-shadow: 1px 1px 4px #ababab;
}
.content-format .front a .view-more span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.content-format .front a .view-more img {
  position: absolute;
  right: 6%;
  top: 38%;
  width: 28px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.content-format .front a .view-more { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.content-format .front a .view-more:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.content-format .front a .view-more span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.content-format .front a .view-more:hover span {
  color: #e6e6e6;
}
.content-format .front a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.content-format .front a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */


/* インタビュー */
.interview-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 20px 0;
}
.interview-content .content-card {
  flex-basis: calc(33.3% - 15px);
  flex-grow: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 40px 0;
  margin: 0 0 20px 0;
}
.interview-content .content-card .image {
  width: 100%;
  height: 260px;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}
.interview-content .content-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.interview-content .content-card .front {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.interview-content .content-card .front div {
  background-color: #FFC300;
  border-radius: 6px;
  padding: 4px 12px;
  width: fit-content;
  display: flex;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.interview-content .content-card .front span {
  font-size: 18px;
  font-weight: 400;
}
.interview-more-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.interview-more-btn a {
  width: 32.1%;
}
.interview-more-btn a .view-more {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
  position: relative;
  border-radius: 100px;
  box-shadow: 1px 1px 4px #ababab;
}
.interview-more-btn a .view-more span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.interview-more-btn a .view-more img {
  position: absolute;
  right: 6%;
  top: 38%;
  width: 28px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.interview-more-btn a .view-more { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.interview-more-btn a .view-more:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.interview-more-btn a .view-more span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.interview-more-btn a .view-more:hover span {
  color: #e6e6e6;
}
.interview-more-btn a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.interview-more-btn a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */








/* 選考の流れ・よくあるご質問・募集要項 */
.more-info .inner a {
  width: 100%;
}
.more-info .inner a img {
  width: 100%;
  margin-bottom: 40px!important;
}

/* ↓ 遷移ホバーのアニメーション ↓ */
.more-info .inner a:hover img {
  transform: scale(1.04); /* SVGを1.2倍に拡大 */
  transition: transform 0.3s ease;
}
.more-info .inner a img {
  transform: scale(1); /* 通常は元の大きさ */
  transition: transform 0.3s ease;
}
/* ↑ 遷移ホバーのアニメーション ↑ */




/* FOLLOW US */
.follow-us {
  margin-top: 80px;
  margin-bottom: 160px;
}
.follow-us .inner .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.follow-us .inner .title-main h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
.follow-us .inner .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.follow-us .inner .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.follow-us .inner .detail p {
  font-size: 20px;
  font-weight: 400;
}
.follow-us .inner .logo {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}
.follow-us .inner .logo a {
  width: 90px;
}
.follow-us .inner .logo a img {
  width: 100%;
  transition: transform 0.6s ease; /* 拡大時のアニメーションを設定 */
}
.follow-us .inner .logo a:hover img {
  transform: scale(1.2); /* ホバー時に1.2倍に拡大 */
}












/* レスポンシブ：横幅768px以下 */
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .sp-block {
    display: block;
  }

  .inner {
    padding: 0 20px;
  }
  .swiper-button-next, .swiper-button-prev{
    margin-top: -75%!important;
  }
  p {
    line-height: 1.5;
  }
  .column {
    flex-direction: column;
  }
  .l__flex-section .block__profile-img,
  .l__flex-section .block__profile,
  .price_menu ul li,
  .block__point,
  .access_box,
  .form-label,
  input, textarea{
    width: 100%;
  }
  footer ul li {
    border-left: none;
  }
  .last {
    border-right: none;
  }
  .l__title h2 {
    font-size: 2rem;
  }
  .l__statement {
    font-size: 1.6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
  .top_logo {
    max-width: 350px;
    width: 90%;
  }
  main {
    padding-bottom: 0;
  }
  main.top{
    padding-top: 40px;
  }
  





    
  /* ファーストビュー */
  .first-view { /* 背景の初期状態は黒 */
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInBackground .5s ease forwards; /* 背景アニメーション */
    background-position: center center; /* 背景画像の中央配置 */
  }
  .first-view .inner .title img {
    width: auto;
    height: 220px;
    margin-top: 200px;
    margin-bottom: 0px;
    opacity: 0; /* 初期表示は透明（背景色のみ） */
    transform: translateY(20px); /* 少し下から上がる感じ */
    animation: fadeInImage .8s ease .8s forwards; /* 遅れてフェードイン */
  }
  @keyframes fadeInBackground { /* 背景フェードイン */
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      background-image: url("/assets/img/new_graduates/fv_bg_pc.webp");
      background-position: center center; /* 背景画像を中央に固定 */
      background-size: cover;
      background-repeat: no-repeat;
    }
  }
  @keyframes fadeInImage {/* SVGフェードイン */
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .first-view .inner .title .img-en {
    height: 140px!important;
    margin-top: 280px!important;
    /* margin-bottom: 0px; */
  }


  /* アニメーション（シート内要素） */
  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* フェードイン効果を適用するクラス */
  .fade-in {
    animation: fade-in 0.6s ease-in-out;
    opacity: 1;
  }



  /* ディープラスを知る・仕事を知る：コンテンツ */
  .new-graduates {
    width: 100%;
    /* position: relative; */
    padding-bottom: 40px;
    overflow: hidden;
  }
  .first-sect {
    padding-top: 20px;
  }
  .new-graduates .top-image {
    width: 100%;
    /* position: absolute; */
    top: 0;
    left: 0;
  }
  .new-graduates .center {
    display: flex;
    justify-content: center;
  }
  /* .new-graduates .next-chapter {
    background-image: url(/assets/img/new_graduates/interview_under.png);
  }
  .new-graduates .interview {
    background-image: url(/assets/img/new_graduates/interview_under.png);
  }
  .new-graduates .environment {
    background-image: url(/assets/img/new_graduates/environment_under.png);
  } */

  .new-graduates .elements {
    /* width: 100%;
    background-repeat: no-repeat;
    background-size: contain; */
    padding-top: 20px;
  }
  .new-graduates .elements .margin {
    margin-bottom: 20px;
  }
  .new-graduates .elements .inner .title-main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
  }
  .new-graduates .elements .inner .title-main h2 {
    font-size: 28px;
    /* font-weight: 400;
    font-family: "Noto Sans JP", sans-serif; */
  }
  .new-graduates .elements .inner .title-main .line {
    /* margin: 20px 0;
    height: 0.5px;
    background-color: #888888;
    flex-grow: 1; */
  }
  .new-graduates .elements .inner .detail {
    /* display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px; */
    margin-bottom: 20px;
  }
  .new-graduates .elements .inner .detail p {
    font-size: 16px;
    /* font-weight: 400; */
  }
  .new-graduates .elements .space {
    /* display: flex;
    flex-direction: column; */
    gap: 40px;
  }

  .content-format {
    /* display: flex; */
    flex-direction: column-reverse;
    /* width: 100%; */
    /* justify-content: space-between; */
    /* align-items: flex-start; */
    gap: 12px;
  }
  .content-format:nth-child(odd) {
    flex-direction: column-reverse; /* 奇数番目の要素だけテキストと画像の位置を逆に */
  }
  .content-format .front {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    /* height: 360px; */
    height: auto;
  }
  .content-format .front .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
  }
  .content-format .front .text .title {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .content-format:nth-child(odd) .front .text .title { /* 偶数番目のcontent-format要素に対するスタイル */
    text-align: left;
  }
  .content-format .front .text .title h3 {
    font-size: 14px;
    /* font-weight: 600;
    font-family: "Noto Sans", sans-serif;
    color: #888888; */
  }
  .content-format .front .text .title-main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    gap: 20px;
  }
  .content-format:nth-child(odd) .front .text .title-main { /* 偶数番目のcontent-format要素内のtitle-mainの子要素を入れ替える */
    /* display: flex; */
    flex-direction: row;
  }
  .content-format .front .text .title-main h2 {
    font-size: 28px;
    /* font-weight: 400; */
    /* font-family: "Noto Sans JP", sans-serif; */
  }
  .content-format .front .text .title-main .line {
    margin: 20px 0;
    height: 0.5px;
    background-color: #888888;
    flex-grow: 1;
  }
  .content-format .front .text .detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  .content-format .front .text .detail p {
    font-size: 16px;
    font-weight: 400;
  }
  .content-format .image {
    width: 100%;
    border-radius: 28px 0 28px 0;
    /* overflow: hidden; */
  }
  .content-format .image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; */
  }
  .content-format .front a {
    width: 100%;
  }
  .content-format .front a .view-more {
    /* width: 100%; */
    padding: 20px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
    position: relative;
    border-radius: 100px; */
    box-shadow: 1px 1px 4px #ababab;
  }
  .content-format .front a .view-more span {
    /* color: #FFF; */
    font-size: 16px;
    /* font-weight: 700; */
  }
  .content-format .front a .view-more img {
    /* position: absolute; */
    right: 6%;
    top: 36%;
    width: 24px;
  }







  /* インタビュー */
  .interview-content {
    /* width: 100%;
    display: flex;
    flex-wrap: wrap; */
    gap: 12px;
    margin: 0 0 12px 0;
  }
  .interview-content .content-card {
    flex-basis: calc(50% - 6px);
    /* flex-grow: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; */
    gap: 12px;
    border-radius: 28px 0;
    margin: 0 0 12px 0;
  }
  .interview-content .content-card .image {
    /* width: 100%; */
    height: 120px;
    border-radius: 28px 0 28px 0;
    /* overflow: hidden; */
  }
  .interview-content .content-card .image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; */
  }
  .interview-content .content-card .front {
    /* width: 100%;
    display: flex;
    align-items: center; */
    gap: 8px;
  }
  .interview-content .content-card .front div {
    background-color: #FFC300;
    border-radius: 4px;
    padding: 4px 8px;
    /* width: fit-content;
    display: flex; */
    font-size: 12px;
    /* color: #000;
    font-weight: 500; */
  }
  .interview-content .content-card .front span {
    font-size: 14px;
    /* font-weight: 400; */
  }
  .interview-more-btn {
    /* display: flex;
    justify-content: center;
    width: 100%; */
  }
  .interview-more-btn a {
    width: 100%;
  }
  .interview-more-btn a .view-more {
    /* width: 100%; */
    padding: 20px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
    position: relative;
    border-radius: 100px;
    box-shadow: 1px 1px 4px #ababab; */
  }
  .interview-more-btn a .view-more span {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
  }
  .interview-more-btn a .view-more img {
    position: absolute;
    right: 6%;
    top: 36%;
    width: 24px;
  }
  /* ↓ ボタンのホバーエフェクト ↓ */
  .interview-more-btn a .view-more { /* グラデーションが動くように */
    transition: background-position 0.4s ease, box-shadow 0.4s ease;
    background-size: 200% 100%;
    background-position: left;
  }
  .interview-more-btn a .view-more:hover { /* ホバー時にグラデーションが右に動く */
    background-position: right;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .interview-more-btn a .view-more span { /* ホバー時のテキストのカラー変化 */
    transition: color 0.4s ease;
  }
  .interview-more-btn a .view-more:hover span {
    color: #e6e6e6;
  }
  .interview-more-btn a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
    transition: transform 0.4s ease;
  }
  .interview-more-btn a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
    transform: translateX(10px);
  }
  /* ↑ ボタンのホバーエフェクト ↑ */








  /* 選考の流れ・よくあるご質問・募集要項 */
  .more-info .inner a {
    width: 100%;
  }
  .more-info .inner a img {
    width: 100%;
    margin-bottom: 20px!important;
  }






















  

  /* FOLLOW US */
  .follow-us {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .follow-us .inner .title-main h2 {
    font-size: 40px;
    font-weight: 600;
  }
  .follow-us .inner .detail p {
    font-size: 16px;
  }
  .follow-us .inner .logo {
    gap: 28px;
    margin-top: 40px;
  }
  .follow-us .inner .logo a {
    width: 48px;
  }
  .follow-us .inner .logo a img {
    width: 100%;
    transition: transform 0.6s ease;
  }
  .follow-us .inner .logo a:hover img {
    transform: scale(1.2);
  }


}