/* common
--------------------------------*/
body.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#cboxOverlay {
  background: rgba(0, 0, 0, 0.7);
}

#cboxContent {
  max-width: 100%;
}

#cboxLoadedContent {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  #cboxLoadedContent {
    padding: 26px 0;
  }
}

/* PC/SP表示切り替え */
.pc {
  display: block;
}

.sp {
  display: none;
}

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

.desktop_img {
  display: block;
}

.mobile_img {
  display: none;
}

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

  .mobile_img {
    display: block;
  }
}

/* vg_lp_main - 基本レイアウト
--------------------------------*/
#vg_lp_main {
  color: #000;
  padding-top: 110px;
}

@media screen and (max-width: 767px) {
  #vg_lp_main {
    padding-top: 50px;
  }
}

#vg_lp_main img {
  vertical-align: bottom;
}

#vg_lp_main .bg_red {
  background-color: #e50019;
}

#vg_lp_main .inner {
  max-width: 1100px;
  width: 91.428571%;
  margin: 0 auto;
}

/* 統一セクションタイトル - 全て左揃え
--------------------------------*/
#vg_lp_main .sec_ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 全て左揃えに統一 */
}

@media screen and (max-width: 767px) {
  #vg_lp_main .sec_ttl {
    flex-direction: column;
    justify-content: flex-start; /* 左揃え */
    align-items: flex-start; /* 左揃え */
  }
}

#vg_lp_main .sec_ttl span {
  display: inline-block;
}

#vg_lp_main .sec_ttl .ttl_en {
  margin-right: 34px;
}

@media screen and (max-width: 767px) {
  #vg_lp_main .sec_ttl .ttl_en {
    margin-right: 0;
  }
}

#vg_lp_main .sec_ttl .ttl_en img {
  width: auto;
  max-width: inherit;
  height: 88px;
}

@media screen and (max-width: 767px) {
  #vg_lp_main .sec_ttl .ttl_en img {
    height: 44px;
  }
}

#vg_lp_main .sec_ttl .ttl_ja {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  padding: 6px 10px;
  background-color: #e50019;
}

@media screen and (max-width: 767px) {
  #vg_lp_main .sec_ttl .ttl_ja {
    font-size: 18px;
    padding: 4px 8px;
    margin-top: 13px;
  }
}

#vg_lp_main .sec_ttl.white .ttl_ja {
  color: #e50019;
  background-color: #fff;
}

/* ボタンスタイル
--------------------------------*/
#vg_lp_main .btn_blue a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  height: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  border-radius: 100vh;
  padding: 10px;
  background-color: #144198;
  margin: 0 auto;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  #vg_lp_main .btn_blue a {
    max-width: 290px;
    height: 59px;
    font-size: 15px;
  }
}

#vg_lp_main .btn_blue a:hover {
  opacity: 0.7;
}

#vg_lp_main .btn_blue a::before {
  content: "";
  width: 18px;
  height: 24px;
  background: url(../img/arw_btn.svg) no-repeat center/100% auto;
  position: absolute;
  right: 34px;
}

@media screen and (max-width: 767px) {
  #vg_lp_main .btn_blue a::before {
    content: none;
  }
}

/* vg_lp_header
--------------------------------*/
#vg_lp_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 1000px;
  background-color: #e50019;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  #vg_lp_header {
    min-width: inherit;
  }
}

#vg_lp_header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 0 45px 0 32px;
}

@media screen and (max-width: 1200px) {
  #vg_lp_header .header_wrap {
    padding: 0 20px 0 15px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_header .header_wrap {
    height: 50px;
    padding: 0 0 0 15px;
  }
}

#vg_lp_header .header_wrap .header_logo {
  width: 366px;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 1200px) {
  #vg_lp_header .header_wrap .header_logo {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_header .header_wrap .header_logo {
    width: 183px;
  }
}

#vg_lp_header .header_wrap .header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

#vg_lp_header .header_wrap .header_logo a img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  #vg_lp_header .header_wrap .header_logo a img {
    max-height: 90px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_header .header_wrap .header_logo a img {
    max-height: 40px;
  }
}

#vg_lp_header .header_wrap .gnavi {
  display: flex;
  align-items: center;
  gap: 0 36px;
}

@media screen and (max-width: 1200px) {
  #vg_lp_header .header_wrap .gnavi {
    gap: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_header .header_wrap .gnavi {
    flex-direction: column;
    gap: 22px 0;
  }
}

#vg_lp_header .header_wrap .gnavi li {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

#vg_lp_header .header_wrap .gnavi li a {
  display: block;
  color: inherit;
  transition: opacity 0.3s;
}

#vg_lp_header .header_wrap .gnavi li a:hover {
  opacity: 0.7;
}

/* モバイルメニュー */
@media screen and (max-width: 767px) {
  #vg_lp_header .menu_trigger {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 15px;
    top: 0;
    z-index: 101;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  #vg_lp_header .menu_trigger span {
    display: inline-block;
    width: 39px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.4s;
    pointer-events: none;
  }

  #vg_lp_header .menu_trigger span:nth-of-type(1) {
    top: 12px;
  }

  #vg_lp_header .menu_trigger span:nth-of-type(2) {
    top: 24px;
  }

  #vg_lp_header .menu_trigger span:nth-of-type(3) {
    top: 36px;
  }

  #vg_lp_header.navOpen .menu_trigger span:nth-of-type(1) {
    top: 36px;
    transform: rotate(-45deg);
  }

  #vg_lp_header.navOpen .menu_trigger span:nth-of-type(2) {
    opacity: 0;
  }

  #vg_lp_header.navOpen .menu_trigger span:nth-of-type(3) {
    top: 36px;
    transform: rotate(45deg);
  }

  #vg_lp_header #vg_lp_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: #e50019;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap {
    display: block;
    width: 100%;
    height: auto;
    padding: 50px 4.2857145%;
    min-height: 100vh;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .gnavi {
    margin-top: 60px;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .gnavi li {
    margin-bottom: 30px;
    font-size: 20px;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .gnavi li a {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .gnavi li a:hover,
  #vg_lp_header #vg_lp_menu .menu_wrap .gnavi li a:active {
    background: rgba(255, 255, 255, 0.2);
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .btn {
    margin-top: 40px;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .btn a {
    display: block;
    max-width: 265px;
    text-align: center;
    font-weight: 700;
    color: #e50019;
    font-size: 15px;
    line-height: 1.6666666667;
    padding: 8px 16px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  #vg_lp_header #vg_lp_menu .menu_wrap .logo {
    width: 183px;
    margin: 44px auto 0;
  }
}

/* VG ヒーローセクション
--------------------------------*/
#vg_hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  padding-top: 110px;
}

@media screen and (max-width: 767px) {
  #vg_hero {
    padding-top: 50px;
    min-height: 500px;
  }
}

.hero_content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.vg_main_logo {
  display: inline-block;
  animation: logoReveal 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 500px;
  transform: translateX(15px);
}

@media screen and (max-width: 767px) {
  .vg_main_logo {
    max-width: 320px;
    transform: translateX(8px);
  }
}

.vg_logo_svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
  animation: logoPulse 4s ease-in-out infinite;
}

.logo_path_red {
  fill: #e50012;
  opacity: 0;
  animation: pathFadeIn 0.8s ease-out 0.3s forwards;
}

.logo_path_blue {
  fill: #2c4197;
  opacity: 0;
  animation: pathFadeIn 0.8s ease-out 0.5s forwards;
}

.logo_text {
  fill: #e50019;
  opacity: 0;
  animation: pathFadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes pathFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes logoReveal {
  0% {
    transform: translateX(15px) scale(0.7) translateY(30px);
    opacity: 0;
  }
  60% {
    transform: translateX(15px) scale(1.05) translateY(-5px);
  }
  100% {
    transform: translateX(15px) scale(1) translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  @keyframes logoReveal {
    0% {
      transform: translateX(8px) scale(0.7) translateY(30px);
      opacity: 0;
    }
    60% {
      transform: translateX(8px) scale(1.05) translateY(-5px);
    }
    100% {
      transform: translateX(8px) scale(1) translateY(0);
      opacity: 1;
    }
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: translateX(15px) scale(1);
  }
  50% {
    transform: translateX(15px) scale(1.02);
  }
}

@media screen and (max-width: 767px) {
  @keyframes logoPulse {
    0%, 100% {
      transform: translateX(8px) scale(1);
    }
    50% {
      transform: translateX(8px) scale(1.02);
    }
  }
}

/* vg_lp_kv - ヒーロー写真セクション
--------------------------------*/
#vg_lp_kv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #fff;
  position: relative;
  height: calc(100vh - 110px);
}

@media screen and (max-width: 767px) {
  #vg_lp_kv {
    height: calc(100vh - 50px);
  }
  
  #vg_lp_kv .img {
    width: 100vw;
    margin: 0 -4.2857142857vw;
    overflow: hidden;
  }
  
  #vg_lp_kv .header_logo a img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    vertical-align: bottom;
    object-fit: cover;
  }
}

@media screen and (max-width: 480px) {
  #vg_lp_kv .header_logo a img {
    max-height: 95%;
  }
}

/* vg_lp_message
--------------------------------*/
#vg_lp_message {
  padding: 0 0 100px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  #vg_lp_message {
    background-image: url(../img/bg01.png), url(../img/bg02.png);
    background-repeat: no-repeat;
    background-size: 200px auto, 200px auto;
    background-position: left bottom 120px, right bottom 120px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_message {
    padding: 0 0 50px;
    background-image: none;
  }
}

#vg_lp_message .sec_ttl {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  #vg_lp_message .sec_ttl {
    margin-top: 33px;
  }
}

#vg_lp_message .txt {
  text-align: justify;
  font-weight: 500;
  font-size: 20px;
  line-height: 2.6;
  margin-top: 50px;
  color: #000;
}

@media screen and (max-width: 767px) {
  #vg_lp_message .txt {
    font-size: 15px;
    line-height: 1.6666666667;
    margin-top: 25px;
  }
}

/* 注釈ボックス */
.vg_note_box {
  margin-top: 50px;
  padding: 25px 30px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
  .vg_note_box {
    margin-top: 35px;
    padding: 20px 25px;
  }
}

.vg_note_text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  text-align: left;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .vg_note_text {
    font-size: 12px;
    line-height: 1.7;
  }
}

.vg_note_text strong {
  color: #333;
  font-weight: 500;
}

/* vg_lp_movie（横スクロール完全防止版）
--------------------------------*/
#vg_lp_movie {
  position: relative;
  padding: 75px 0 90px;
  background: #e50019;
  overflow: hidden;
  max-width: 100vw;
}

@media screen and (max-width: 767px) {
  #vg_lp_movie {
    padding: 30px 0 60px;
  }
}

#vg_lp_movie .movie {
  position: relative;
  max-width: 980px;
  aspect-ratio: 16/9;
  margin: 50px auto 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #vg_lp_movie .movie {
    margin: 25px 15px 0;
    max-width: calc(100% - 30px);
  }
}

#vg_lp_movie .movie iframe,
#vg_lp_movie .movie video {
  width: 100%;
  height: 100%;
}

/* vg_lp_coach
--------------------------------*/
#vg_lp_coach {
  position: relative;
  padding: 200px 0 230px;
  background: url(../img/bg_wave.png) repeat-x center top/152px auto;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach {
    padding: 73px 0 34px;
    background: url(../img/bg_wave.png) repeat-x center 12px/43px auto;
  }

  #vg_lp_coach::before {
    content: "";
    width: 100%;
    height: 14px;
    background-color: #144198;
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* コーチセクションのタイトルも左揃えに統一 */
#vg_lp_coach .sec_ttl .ttl_ja {
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background-color: #e50019;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .sec_ttl .ttl_ja {
    padding: 4px 8px;
    margin-top: 13px;
  }
}

#vg_lp_coach .coach_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 1.8181818182%;
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list {
    gap: 30px 3%;
    margin-top: 40px;
  }
}

#vg_lp_coach .coach_list .coach_item {
  width: 23.6363636364%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item {
    width: 48.5%;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 30px;
  text-align: center;
  color: #fff;
  background-color: #e50019;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap {
    padding: 15px 10px 20px;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap>div {
  flex: 1;
  min-height: 100px;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap>div {
    min-height: inherit;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .position {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap .position {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 0.375em;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap .name {
    font-size: 18px;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .txt {
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap .txt {
    font-size: 12px;
    line-height: 1.5833333333;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .btn {
  margin-top: 20px;
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .btn a {
  display: block;
  max-width: 165px;
  text-align: center;
  color: #e50019;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5714285714;
  padding: 4px 10px;
  background-color: #fff;
  margin: 0 auto;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  #vg_lp_coach .coach_list .coach_item .txt_wrap .btn a {
    max-width: 112px;
    padding: 0 10px;
  }
}

#vg_lp_coach .coach_list .coach_item .txt_wrap .btn a:hover {
  opacity: 0.7;
}

/* vg_lp_producer
--------------------------------*/
#vg_lp_producer {
  position: relative;
  padding: 120px 0 130px;
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  #vg_lp_producer {
    padding: 34px 0 67px;
  }
}

.producer_list {
  display: flex;
  justify-content: center;
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .producer_list {
    margin-top: 40px;
  }
}

.producer_item {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .producer_item {
    flex-direction: column;
    max-width: 100%;
  }
}

.producer_item .img {
  width: 400px;
  min-width: 400px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .producer_item .img {
    width: 100%;
    min-width: auto;
  }
}

.producer_item .img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .producer_item .img img {
    max-height: 80vh;
  }
}

@media screen and (max-width: 767px) {
  .producer_item .img img {
    max-height: 60vh;
  }
}

.producer_item .txt_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 40px 40px 50px;
  color: #000;
  background-color: #fff;
  min-height: 0;
}

@media screen and (max-width: 767px) {
  .producer_item .txt_wrap {
    padding: 30px 20px;
  }
}

.producer_item .txt_wrap .position {
  font-size: 16px;
  margin-bottom: 10px;
}

.producer_item .txt_wrap .name {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  color: #000;
}

@media screen and (max-width: 767px) {
  .producer_item .txt_wrap .name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.producer_item .txt_wrap .career_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #e50019;
  margin-bottom: 15px;
  border-bottom: 2px solid #e50019;
  padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .producer_item .txt_wrap .career_title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.producer_item .txt_wrap .txt {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 767px) {
  .producer_item .txt_wrap .txt {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* vg_lp_recruit
--------------------------------*/
#vg_lp_recruit {
  position: relative;
  padding: 120px 0 130px;
  background-color: #e50019;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #vg_lp_recruit {
    padding: 47px 0 67px;
  }
}

#vg_lp_recruit .sec_ttl .ttl_ja {
  border: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  #vg_lp_recruit .sec_ttl .ttl_ja {
    border: 2px solid #fff;
  }
}

.recruit_lead {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.2;
  text-align: left;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .recruit_lead {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 30px;
    text-align: left;
  }
}

.recruit_list {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .recruit_list {
    margin-top: 40px;
  }
}

.recruit_item {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.recruit_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.recruit_item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .recruit_item {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
}

.recruit_item_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

@media screen and (max-width: 767px) {
  .recruit_item_header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
  }
}

.recruit_title {
  font-weight: 700;
  font-size: 24px;
  color: #333;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

@media screen and (max-width: 767px) {
  .recruit_title {
    font-size: 20px;
  }
}

.recruit_type {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .recruit_type {
    gap: 8px;
  }
}

.type_badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.type_badge.permanent {
  background-color: #144198;
  color: #fff;
}

.type_badge.pro {
  background-color: #ff6b35;
  color: #fff;
}

.type_badge.contract {
  background-color: #28a745;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .type_badge {
    padding: 4px 12px;
    font-size: 11px;
  }
}

.recruit_content {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .recruit_content {
    padding-top: 15px;
  }
}

.recruit_description {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .recruit_description {
    font-size: 14px;
    line-height: 1.7;
  }
}

.recruit_detail_link {
  margin-top: 20px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .recruit_detail_link {
    margin-top: 15px;
    text-align: left;
  }
}

.detail_link {
  display: inline-flex;
  align-items: center;
  color: #e50019;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e50019;
  padding-bottom: 2px;
}

.detail_link::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.detail_link:hover {
  color: #c40015;
  border-bottom-color: #c40015;
}

.detail_link:hover::after {
  transform: translateX(3px);
}

@media screen and (max-width: 767px) {
  .detail_link {
    font-size: 13px;
  }
}

.recruit_cta {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .recruit_cta {
    margin-top: 40px;
  }
}

.recruit_btn {
  display: inline-block;
  background: #fff;
  color: #e50019;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}

.recruit_btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .recruit_btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

/* vg_lp_activity - サポートセクション
--------------------------------*/
#vg_lp_activity {
  padding: 120px 0 0;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity {
    padding: 60px 0 0;
  }
}

#vg_lp_activity .lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 55px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .lead {
    font-size: 18px;
    line-height: 1.6111111111;
    margin-top: 20px;
    text-align: left;
  }
}

#vg_lp_activity .activity_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 75px;
}

@media screen and (max-width: 1024px) {
  #vg_lp_activity .activity_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .activity_list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }
}

#vg_lp_activity .activity_item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

#vg_lp_activity .activity_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e50019 0%, #144198 100%);
}

#vg_lp_activity .activity_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#vg_lp_activity .activity_item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

#vg_lp_activity .activity_item .img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  #vg_lp_activity .activity_item .img {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .activity_item .img {
    height: 260px;
  }
}

#vg_lp_activity .activity_item .img img,
#vg_lp_activity .activity_item .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#vg_lp_activity .activity_item:hover .img img,
#vg_lp_activity .activity_item:hover .img video {
  transform: scale(1.05);
}

#vg_lp_activity .activity_item .img video {
  background: #000;
}

#vg_lp_activity .activity_item .support_badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(229, 0, 25, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#vg_lp_activity .activity_item .txt_wrap {
  padding: 25px;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .activity_item .txt_wrap {
    padding: 20px;
  }
}

#vg_lp_activity .activity_item .support_category {
  color: #e50019;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

#vg_lp_activity .activity_item .support_title {
  font-weight: 700;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .activity_item .support_title {
    font-size: 18px;
  }
}

#vg_lp_activity .activity_item .support_features {
  list-style: none;
  margin: 15px 0 20px;
}

#vg_lp_activity .activity_item .support_features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

#vg_lp_activity .activity_item .support_features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e50019;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .activity_item .support_features {
    margin: 12px 0 15px;
  }

  #vg_lp_activity .activity_item .support_features li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

#vg_lp_activity .activity_item .support_cta {
  display: inline-flex;
  align-items: center;
  color: #144198;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#vg_lp_activity .activity_item .support_cta::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

#vg_lp_activity .activity_item:hover .support_cta::after {
  transform: translateX(3px);
}

#vg_lp_activity .support_cta_section {
  margin: 80px 0;
  padding: 60px 40px;
  background-color: #144198;
  text-align: center;
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .support_cta_section {
    margin: 50px 0;
    padding: 40px 20px;
  }
}

#vg_lp_activity .support_cta_section .cta_title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .support_cta_section .cta_title {
    font-size: 20px;
  }
}

#vg_lp_activity .support_cta_section .cta_subtitle {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .support_cta_section .cta_subtitle {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

#vg_lp_activity .support_cta_section .cta_button {
  display: inline-block;
  max-width: 350px;
  text-align: center;
  color: #144198;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  padding: 12px 30px;
  background-color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  #vg_lp_activity .support_cta_section .cta_button {
    max-width: 265px;
    font-size: 15px;
    line-height: 1.6666666667;
    padding: 8px 15px;
  }
}

#vg_lp_activity .support_cta_section .cta_button:hover {
  opacity: 0.7;
}

/* vg_lp_price - スケジュールセクション
--------------------------------*/
#vg_lp_price {
  position: relative;
  padding: 120px 0 180px;
  background-color: #e50019;
}

@media screen and (max-width: 767px) {
  #vg_lp_price {
    padding: 47px 0 57px;
  }
}

#vg_lp_price::after {
  content: "";
  width: 147px;
  height: 119px;
  background: url(../img/logo_white.svg) no-repeat center/100% auto;
  position: absolute;
  right: calc(50% - 880px);
  bottom: 103px;
}

@media screen and (max-width: 1800px) {
  #vg_lp_price::after {
    right: 20px;
  }
}

@media screen and (max-width: 1600px) {
  #vg_lp_price::after {
    bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_price::after {
    content: none;
  }
}

#vg_lp_price .sec_ttl .ttl_ja {
  border: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  #vg_lp_price .sec_ttl .ttl_ja {
    border: 2px solid #fff;
  }
}

#vg_lp_price .schedule_timeline {
  margin-top: 80px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  #vg_lp_price .schedule_timeline {
    margin-top: 42px;
    padding: 0 10px;
  }
}

.schedule_item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.schedule_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 767px) {
  .schedule_item {
    flex-direction: column;
    margin-bottom: 25px;
    align-items: flex-start;
  }
}

.schedule_month {
  background: #144198;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 30px;
}

@media screen and (max-width: 767px) {
  .schedule_month {
    font-size: 20px;
    width: 60px;
    height: 60px;
    margin: 20px;
    align-self: flex-start;
  }
}

.schedule_content {
  flex: 1;
  padding: 30px 40px;
}

@media screen and (max-width: 767px) {
  .schedule_content {
    padding: 20px;
    text-align: left;
    width: 100%;
  }
}

.schedule_content h4 {
  font-weight: 700;
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .schedule_content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
}

.schedule_content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .schedule_content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
}

.schedule_details {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .schedule_details {
    text-align: left;
  }
}

.requirements, .activity_period {
  margin-top: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .requirements, .activity_period {
    padding: 15px;
    margin-top: 15px;
    text-align: left;
  }
}

.requirements h5, .activity_period h5 {
  font-weight: 700;
  font-size: 18px;
  color: #e50019;
  margin-bottom: 15px;
  border-bottom: 2px solid #e50019;
  padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .requirements h5, .activity_period h5 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
  }
}

.requirements ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .requirements ul {
    text-align: left;
  }
}

.requirements li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e50019;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .requirements li {
    font-size: 13px;
    margin-bottom: 8px;
    text-align: left;
  }
}

/* vg_lp_philosophy - 活動紹介セクション
--------------------------------*/
#vg_lp_philosophy {
  position: relative;
  padding: 170px 0 180px;
  background: url(../img/bg_wave.png) repeat-x center top/152px auto;
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy {
    padding: 92px 0 69px;
    background: url(../img/bg_wave.png) repeat-x center 12px/43px auto;
  }

  #vg_lp_philosophy::before {
    content: "";
    width: 100%;
    height: 14px;
    background-color: #144198;
    position: absolute;
    left: 0;
    top: 0;
  }
}

#vg_lp_philosophy .activity_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 75px;
}

@media screen and (max-width: 1024px) {
  #vg_lp_philosophy .activity_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy .activity_list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 36px;
  }
}

#vg_lp_philosophy .activity_item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

#vg_lp_philosophy .activity_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e50019 0%, #144198 100%);
}

#vg_lp_philosophy .activity_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#vg_lp_philosophy .activity_item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy .activity_item .img {
    aspect-ratio: 16/9;
  }
}

#vg_lp_philosophy .activity_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

#vg_lp_philosophy .activity_item:hover .img img {
  transform: scale(1.05);
}

#vg_lp_philosophy .activity_item .txt_wrap {
  padding: 25px;
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy .activity_item .txt_wrap {
    padding: 20px;
  }
}

#vg_lp_philosophy .activity_item .txt_wrap .support_category {
  color: #e50019;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

#vg_lp_philosophy .activity_item .txt_wrap .support_title {
  font-weight: 700;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy .activity_item .txt_wrap .support_title {
    font-size: 18px;
  }
}

#vg_lp_philosophy .activity_item .txt_wrap .support_features {
  list-style: none;
  margin: 15px 0 20px;
}

#vg_lp_philosophy .activity_item .txt_wrap .support_features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

#vg_lp_philosophy .activity_item .txt_wrap .support_features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e50019;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #vg_lp_philosophy .activity_item .txt_wrap .support_features {
    margin: 12px 0 15px;
  }

  #vg_lp_philosophy .activity_item .txt_wrap .support_features li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

/* スポンサーセクション */
.sponsor_section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.sponsor_title {
  font-size: 14px;
  font-weight: 700;
  color: #e50019;
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sponsor_title {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.sponsor_logos {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.sponsor_logos img {
  width: 140px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sponsor_logos img:hover {
  border-color: #e50019;
  box-shadow: 0 2px 8px rgba(229, 0, 25, 0.1);
}

@media screen and (max-width: 767px) {
  .sponsor_logos {
    gap: 8px;
    max-width: 280px;
  }

  .sponsor_logos img {
    width: 130px;
    height: 60px;
    padding: 8px;
  }
}

/* スポンサーセクション */
.sponsor_section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.sponsor_title {
  font-size: 14px;
  font-weight: 700;
  color: #e50019;
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sponsor_title {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.sponsor_logos {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.sponsor_logos img {
  width: 140px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sponsor_logos img:hover {
  border-color: #e50019;
  box-shadow: 0 2px 8px rgba(229, 0, 25, 0.1);
}

@media screen and (max-width: 767px) {
  .sponsor_logos {
    gap: 8px;
    max-width: 280px;
  }

  .sponsor_logos img {
    width: 130px;
    height: 60px;
    padding: 8px;
  }
}

/* vg_lp_instagram - チームInstagramセクション
--------------------------------*/
#vg_lp_instagram {
  padding: 120px 0 130px;
  background-color: #f8f9fa;
}

@media screen and (max-width: 767px) {
  #vg_lp_instagram {
    padding: 60px 0 70px;
  }
}

.instagram_content {
  margin-top: 80px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .instagram_content {
    margin-top: 40px;
    border-radius: 15px;
  }
}

.instagram_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .instagram_header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.instagram_profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .instagram_profile {
    flex-direction: column;
    gap: 15px;
  }
}

.profile_image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e50019;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .profile_image {
    width: 60px;
    height: 60px;
  }
}

.profile_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile_info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .profile_info h3 {
    font-size: 20px;
  }
}

.profile_info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .profile_info p {
    font-size: 14px;
  }
}

.follow_btn {
  background: linear-gradient(135deg, #e50019 0%, #144198 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.follow_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 0, 25, 0.3);
}

@media screen and (max-width: 767px) {
  .follow_btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.snapwidget_container {
  padding: 20px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .snapwidget_container {
    padding: 15px;
  }
}

.snapwidget-widget {
  border-radius: 8px;
  min-height: 400px;
}

@media screen and (max-width: 767px) {
  .snapwidget-widget {
    min-height: 300px;
  }
}

/* Instagram Widget レスポンシブ表示制御 */
.widget_pc,
.widget_tablet,
.widget_mobile {
  display: none;
}

@media screen and (min-width: 1025px) {
  .widget_pc {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .widget_tablet {
    display: block;
  }
}

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

.instagram_footer {
  padding: 30px 40px;
  text-align: center;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .instagram_footer {
    padding: 20px;
  }
}

.view_more_btn {
  color: #e50019;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.view_more_btn:hover {
  color: #144198;
}

@media screen and (max-width: 767px) {
  .view_more_btn {
    font-size: 14px;
  }
}

/* vg_lp_partnership - パートナーシップセクション
--------------------------------*/
#vg_lp_partnership {
  padding: 120px 0 130px;
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  #vg_lp_partnership {
    padding: 34px 0 67px;
  }
}

.sub_ttl {
  color: #e50019;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .sub_ttl {
    font-size: 18px;
    margin-top: 40px;
  }
}

.sub_ttl:first-of-type {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .sub_ttl:first-of-type {
    margin-top: 30px;
  }
}

.partner_list {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .partner_list {
    margin-top: 20px;
  }
}

.partner_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .partner_row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .partner_row.four-items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2% 2%;
  }
}

.partner_row:last-child {
  margin-bottom: 0;
}

.partner_row:has(.partner_item.small) {
  justify-content: center;
}

.partner_item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
  text-align: center;
}

.partner_item.large {
  width: 49%;
  height: 200px;
}

@media screen and (max-width: 767px) {
  .partner_item.large {
    width: 90%;
    height: 120px;
  }
}

.partner_item.medium {
  width: 23.5%;
  height: 150px;
}

@media screen and (max-width: 767px) {
  .partner_item.medium {
    width: 45%;
    height: 100px;
  }
}

.partner_item.small {
  width: 30%;
  height: 150px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .partner_item.small {
    width: 60%;
    height: 100px;
  }
}

.partner_item:hover {
  border-color: #e50019;
  box-shadow: 0 4px 8px rgba(229, 0, 25, 0.2);
}

.partner_item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.partner_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.partner_item .placeholder {
  color: #999;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .partner_item .placeholder {
    font-size: 12px;
  }
}

.section_divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 60px 0 20px;
}

@media screen and (max-width: 767px) {
  .section_divider {
    margin: 30px 0 10px;
  }
}

/* vg_lp_footer
--------------------------------*/
#vg_lp_footer .fixed_bnr {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 18.23%;
  max-width: 350px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .fixed_bnr {
    right: 10px;
    bottom: 10px;
  }
}

#vg_lp_footer .fixed_bnr a {
  display: block;
  transition: opacity 0.3s;
}

#vg_lp_footer .fixed_bnr a:hover {
  opacity: 0.7;
}

#vg_lp_footer .inner {
  max-width: 1100px;
  width: 91.428571%;
  margin: 0 auto;
}

#vg_lp_footer .vg_lp_cta {
  padding: 43px 0 84px;
  background-color: #144198;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta {
    padding: 25px 0 35px;
  }
}

#vg_lp_footer .vg_lp_cta .logo {
  width: 121px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .logo {
    width: 77px;
  }
}

#vg_lp_footer .vg_lp_cta .btn01 {
  margin: 49px 0 26px;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .btn01 {
    margin: 25px 0 20px;
  }
}

#vg_lp_footer .vg_lp_cta .btn01 a {
  display: block;
  max-width: 530px;
  text-align: center;
  color: #144198;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  padding: 10px 20px;
  background-color: #fff;
  margin: 0 auto;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .btn01 a {
    max-width: 265px;
    font-size: 15px;
    line-height: 1.6666666667;
    padding: 8px 15px;
  }
}

#vg_lp_footer .vg_lp_cta .btn01 a:hover {
  opacity: 0.7;
}

#vg_lp_footer .vg_lp_cta .btn02 {
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .btn02 {
    margin: 25px 0 0;
  }
}

#vg_lp_footer .vg_lp_cta .btn02 a {
  display: block;
  max-width: 230px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  padding: 16px 20px;
  border: 2px solid #fff;
  margin: 0 auto;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .btn02 a {
    max-width: 175px;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #fff;
  }
}

#vg_lp_footer .vg_lp_cta .btn02 a:hover {
  opacity: 0.7;
}

#vg_lp_footer .vg_lp_cta .txt {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.1666666667;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .vg_lp_cta .txt {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

#vg_lp_footer .footer {
  padding: 60px 0 50px;
  background-color: #e50019;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .footer {
    padding: 30px 0 26px;
  }
}

#vg_lp_footer .footer .logo {
  max-width: 457px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .footer .logo {
    max-width: 228px;
  }
}

#vg_lp_footer .footer .logo a {
  display: block;
  transition: opacity 0.3s;
}

#vg_lp_footer .footer .logo a:hover {
  opacity: 0.7;
}

#vg_lp_footer .footer .logo a img {
  vertical-align: bottom;
}

#vg_lp_footer .footer .copyright {
  max-width: 356px;
  line-height: 1;
  margin: 58px auto 0;
}

@media screen and (max-width: 767px) {
  #vg_lp_footer .footer .copyright {
    width: 178px;
    margin: 30px auto 0;
  }
}

#vg_lp_footer .footer .copyright img {
  vertical-align: bottom;
}

/* チアスクール案内セクション */
.cheer_school_cta {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .cheer_school_cta {
    padding: 60px 0;
  }
}

.cheer_school_content {
  text-align: center;
  color: #333;
}

.cheer_school_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  color: #e50019;
}

@media screen and (max-width: 767px) {
  .cheer_school_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.cheer_school_subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #666;
}

@media screen and (max-width: 767px) {
  .cheer_school_subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

.cheer_school_btn {
  display: inline-block;
  background: linear-gradient(135deg, #e50019 0%, #144198 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(229, 0, 25, 0.2);
}

.cheer_school_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(229, 0, 25, 0.3);
}

@media screen and (max-width: 767px) {
  .cheer_school_btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* アニメーション */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* その他のユーティリティ */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #vg_lp_main .sec_ttl {
    flex-direction: column;
    justify-content: center; /* 中央揃え */
    align-items: center; /* 中央揃え */
  }
}