@charset "utf-8";

:root {
  --color-primary: #002b62;
  --color-secondary: #2b9597;
}

/* ===============================================
   Main Visual
=============================================== */
#main_visual {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #fff;
  pointer-events: none;
}

#top_main {
  padding-bottom: 0;
}

#main_visual a {
  pointer-events: auto;
}

.mv_green_bg {
  position: absolute;
  top: 0;
  right: -20%;
  width: 40%;
  height: 120px;
  background-color: #2b9597;
  transform: skewX(-30deg);
  transform-origin: top right;
  z-index: 1;
}

.mv_layer_base,
.mv_layer_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 100%;
}

.mv_layer_base {
  z-index: 2;
}

/* --- MV Overlay (Navy Background) --- */
.mv_layer_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: var(--color-primary);
  /* 計算式： 2000px × 0.22 = 440px */
  clip-path: polygon(min(22vw, 440px) 0, 84% 0, 62% 100%, 0 100%);
  overflow: hidden;
}

.mv_layer_overlay::before {
  display: none;
}

/* --- Catch Copy Area --- */
.mv_layer_base_over {
  width: 84%;
  position: absolute;
  top: 41.3%;
  left: 5vw;
  transform: translateY(-50%);
  z-index: 120;
  clip-path: polygon(16vw 0, 100% 0, 62% 100%, 12vw 100%);
}

.mv_layer_base_over .catch_en {
  font-style: italic;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 7px;
  line-height: normal;
  text-align: left;
  color: #fff;
  z-index: 15;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.6));
}

.mv_catch_area {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
  width: 80vw;
  z-index: 5;
}

.mv_catch_area .catch_en {
  font-style: italic;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 7px;
  line-height: normal;
  text-align: left;
  color: var(--color-primary);
  z-index: 10;
}

.catch_jp {
  width: 45%;
  max-width: 375px;
  height: auto;
  margin-left: 10%;
}

.catch_jp_sp {
  display: none;
}

/* --- Slider Area --- */
.mv_slider_area {
  position: absolute;
  top: 14px;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 100;
}

#top_circle_slider {
  width: 100%;
  height: 100%;
}

/* slick- はJSで付与されるため維持 */
#top_circle_slider .slick-list,
#top_circle_slider .slick-track {
  height: 100%;
}

.circle_group {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 900px;
  z-index: 4;
}

.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.circle.c_main {
  width: 670px;
  height: auto;
  aspect-ratio: 1 / 1;
  top: 39%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 3;
}

.circle.c_sub1 {
  width: 600px;
  height: auto;
  aspect-ratio: 1 / 1;
  top: 39%;
  left: 30%;
  z-index: 2;
  border-width: 3px;
  transform: translateY(-50%);
}

.circle.c_sub2 {
  width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  top: 39%;
  left: 65%;
  z-index: 1;
  border-width: 2px;
  transform: translateY(-50%);
}

#top_circle_slider .slick-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  min-height: 900px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2000ms ease;
  z-index: 10;
}

#top_circle_slider .slick-slide.slick-current {
  opacity: 1;
  z-index: 9;
  position: relative !important;
}

/* ===============================================
   Policy Section (Top Policy)
=============================================== */
#top_policy {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible !important;
  z-index: 10;
}

.br-sp {
  display: none;
}

.top-left-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 139%;
  z-index: 1;
}

.top-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.top-left-img .top_photo_sp {
  display: none;
}

/* --- Right Content Area (White Background) --- */
.top-policy {
  position: relative;
  width: 100%;
  margin-left: auto;
  background-color: transparent;
  min-height: auto;
  z-index: 5;
  clip-path: none;
}

.top-policy::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: none;
  background-color: #fff;
  z-index: -1;
  height: calc(100% + 850px);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 0% 93%);
}

.policy_inner {
  padding: 100px 10% 100px 42%;
  box-sizing: border-box;
}

.news_ticker {
  display: flex;
  align-items: center;
  border: 1px solid #000;
  font-size: 14px;
  margin-bottom: 2em;
  background: #fff;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: -5%;
}

.news_ticker .date {
  padding: 10px 15px;
  border-right: 1px solid #ddd;
  white-space: nowrap;
  flex-shrink: 10%;
}

.news_ticker .txt {
  padding: 10px 15px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.news_ticker .link {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.news_ticker .link:hover {
  opacity: 0.7;
}

#top_policy h2 {
  font-size: 65px;
  font-style: italic;
  color: var(--color-primary);
  line-height: 60px;
  margin-bottom: 80px;
  font-family: "Manrope", sans-serif;
  text-align: center;
  margin-left: 0.1em;
}

.policy_ttl {
  margin-right: -20%;
}

#top_policy .space {
  display: inline-block;
  width: 2em;
}

/* --- Policy List --- */
.policy_list li:nth-child(1) {
  margin-left: 21%;
}

.policy_list li:nth-child(2) {
  margin-left: 12%;
}

.policy_list li:nth-child(3) {
  margin-left: 3%;
}

.policy_list li:nth-child(4) {
  margin-left: -8%;
}

.policy_list {
  margin-bottom: 60px;
}

.policy_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.policy_list .num {
  font-size: 70px;
  font-weight: bold;
  color: var(--color-primary);
  font-style: italic;
  line-height: 0.8;
  margin-right: 23px;
  width: 80px;
  flex-shrink: 0;
}

.policy_list .desc h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.policy_list .desc p {
  font-size: 15px;
  line-height: 1.8;
}

/* ===============================================
   Blue Button (Kiran ver.)
=============================================== */
.btn_blue {
  background-color: var(--color-primary);
  color: #fff;
  padding: 15px 70px 15px 40px;
  text-decoration: none;
  font-size: 15px;

  /* ボタンの形（多角形） */
  clip-path: polygon(0 0, 75% 0, 88% 50%, 75% 100%, 0 100%, 0% 50%);
  /* これがないと光が画面全体にはみ出す */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* 形や色の変化をなめらかに */
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

/* --- 光 --- */
.btn_blue::before {
content: "";
display: block;
position: absolute;
top: 0;
left: -100%;
width: 60%;
height: 100%;
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
transform: skewX(-25deg);
pointer-events: none;
z-index: 2;
}

/* ホバー時のテキスト色（光で見えなくならないように） */
.btn_blue:hover {
  /* 必要ならここで文字色などを調整 */
  color: #fff;
  opacity: 1;
}

/* --- ホバーで発動 --- */
.btn_blue:hover::before {
  animation: kiran-slide 1s ease-in-out;
}
@keyframes kiran-slide {
0% { left: -100%; opacity: 0; }
20% { opacity: 1; }
100% { left: 200%; opacity: 0; }
}


/* ===============================================
   Blue Buttonここまで
=============================================== */

#top_policy .btn_blue {
  margin-left: 15%;
}

#top h2 {
  font-size: 80px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 0.5em;
  white-space: nowrap;
  line-height: 1.1em;
  font-weight: 800;
}

/* ===============================================
   About Section
=============================================== */
#top_about {
  position: relative;
  z-index: 30;
  top: -310px;
  pointer-events: none;
}

/* #top_about 内の文字やボタンは触れるように */
#top_about .about_content_area,
#top_about .about_img_area,
#top_about a {
  pointer-events: auto;
}

#top_about .bg_layer_group {
  pointer-events: none !important;
}

.about_img_area {
  position: absolute;
  top: 48%;
  left: -4%;
  width: 60%;
  z-index: 5;
  pointer-events: none;
}

.about_img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about_content_area {
  margin-left: auto;
  width: 50%;
  max-width: 600px;
}

.bg_layer_group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg_black_layer {
  position: absolute;
  top: -132%;
  right: 0;
  width: 160%;
  height: 156%;
  min-height: 2940px;
  max-width: 5000px;
  background-color: #111;
  clip-path: polygon(100% 0, 0 60%, 0 52%, 100% 100%);
}

/* --- 星空レイヤー --- */
.bg_star_layer {
  position: absolute;
  top: -132%;
  right: 0;
  width: 162%;
  height: 156%;
  min-height: 2940px;
  max-width: 5000px;
  /* clip-path はそのままでOK（これがfixedだめにする。JSで解決するから許す） */
  clip-path: polygon(100% 0, 0 60%, 100% 30%);
  z-index: 2;
  overflow: hidden;

  background-image: var(--bg-star);
  background-size: 800px auto;
  background-repeat: repeat;

  /* ▼▼▼ 変更点 ▼▼▼ */
  /* fixed は効かないので削除（または scroll に戻す） */
  background-attachment: scroll; 
  /* 初期位置はセンター */
  background-position: center 0;
  /* JSで位置を動かすので、なめらかにする必要はない */
}


.bg_star_layer img {
  width: 80%;
}

/* --- 星空用の安全なアニメーション（fixedを壊さない） --- */
.fade-simple {
  opacity: 0;
  transition: opacity 2.0s ease; /* ふんわり表示 */
}

.fade-simple.show {
  opacity: 1;
  /* ここに transform を絶対に書かないことがポイント！ */
}

.about_txt_inner {
  position: relative;
  z-index: 10;
  color: #fff;
  width: 80%;
  padding: 50px;
  box-sizing: border-box;
  transform: translateY(76%);
  left: 4%;
}

#top_about h2 {
  font-size: 80px;
  font-style: italic;
  color: #fff;
  font-family: "Manrope", sans-serif;
  margin-bottom: 30px;
  line-height: 1;
  font-weight: 800;
}

#top_about h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
}

#top_about p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* PC/基本設定での衛星画像 */
#top_about .img_satellite {
  position: absolute;
  top: -459px;
  left: -15px;
  width: 414px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.img_satellite img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================================
   Recruit Area Section
=============================================== */
#top_recruit_area {
  position: relative;
  width: 100%;
  padding: 10px 0 100px;
  margin-top: 35%;
  z-index: 50;
}

#top_recruit_area .recruit_area_btn {
  z-index: 100;
}

.recruit_area_inner {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.recruit_area_ttl {
  font-family: "Manrope", sans-serif;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1;
  color: var(--color-secondary);
  margin-left: 50px;
}

.recruit_area_desc {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 25px;
  text-align: left;
  text-shadow:
    2px 2px 2px #ffffff,
    -2px 2px 2px #ffffff,
    2px -2px 2px #ffffff,
    -2px -2px 2px #ffffff,
    2px 0px 2px #ffffff,
    0px 2px 2px #ffffff,
    -2px 0px 2px #ffffff,
    0px -2px 2px #ffffff;
}

#top_recruit_area .btn_blue {
  background-color: var(--color-secondary);
}

.container-r {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.container-r .item-1 {
  margin-top: 20.4%;
  margin-left: -0.5px;
  position: relative;
  z-index: 2;
}

.container-r .item-0 {
  position: relative;
  z-index: 1;
}

/* --- ▼▼▼ 画像を光らせる ▼▼▼ --- */
/* 1. 画像の固定（透明化・移動の阻止） */
#top_recruit_area .container-r .item-0:hover img,
#top_recruit_area .container-r .item-1:hover img,
#top_recruit_area .container-r a:hover img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* 2. 光を閉じ込める結界（画像の箱に直接設定） */
#top_recruit_area .container-r .item-0,
#top_recruit_area .container-r .item-1 {
    position: relative;
    overflow: hidden; /* 光のはみ出し防止 */
    display: block;   /* 箱として安定させる */
    z-index: 1;
}

/* 3. 光（閃光）の正体 */
#top_recruit_area .container-r .item-0::after,
#top_recruit_area .container-r .item-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;       /* スタート位置 */
    width: 50%;        /* 光の幅 */
    height: 100%;
    
    /* 鋭い光の帯 */
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(255,255,255,0) 100%
    );
    
    transform: skewX(-25deg); /* 斜めに */
    z-index: 100; /* 画像より確実に手前 */
    pointer-events: none;
}

/* 4. 発動条件（箱にマウスが乗ったら発射） */
#top_recruit_area .container-r .item-0:hover::after,
#top_recruit_area .container-r .item-1:hover::after {
    animation: recruit-kiran 1s ease-in-out;
}

/* アニメーション定義 */
@keyframes recruit-kiran {
    0% {
        left: -100%;
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.container-r-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  margin: 0 auto;
  color: var(--color-primary);
  font-size: 25px;
  margin-top: 15px;
  position: static;
  padding: 0;
}

.container-r-ttl:before,
.container-r-ttl:after {
  content: '';
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-primary);
  position: static;
  width: auto;
  top: auto;
}

.container-r-ttl:before {
  margin-right: 20px;
}

.container-r-ttl:after {
  margin-left: 20px;
}

.recruit_ttl_group {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  align-items: center;
}

.bg_green_layer {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30%;
  height: 50%;
  min-height: 300px;
  background-color: var(--color-secondary);
  clip-path: polygon(0 0, 0 100%, 50% 100%);
  z-index: 1;
}

.recruit_area_btn {
  position: absolute;
  right: 20%;
  bottom: 64%;
}

/* ===============================================
   Policy Animation Setting
===============================================
#top_policy .news_ticker,
#top_policy .policy_ttl,
#top_policy .policy_list li,
#top_policy .btn_blue {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#top_policy .news_ticker.show,
#top_policy .policy_ttl.show,
#top_policy .policy_list li.show,
#top_policy .btn_blue.show {
  opacity: 1;
  transform: translateY(0);
}*/


/* ===============================================
   Breakpoints
=============================================== */
@media screen and (min-width: 1950px) {
  .bg_black_layer {
    width: 163%;
    min-height: 2940px;
    clip-path: polygon(100% 0, 0 60%, 0 53%, 100% 100%);
  }

  .bg_star_layer {
    width: 163%;
    min-height: 2940px;
    clip-path: polygon(100% 0, 0 60%, 100% 30%);
  }
}

@media screen and (max-width: 1700px) {
  .mv_layer_base_over {
    display: block;
    width: 84%;
    position: absolute;
    top: 41.3%;
    left: 5vw;
    transform: translateY(-50%);
    z-index: 120;
    clip-path: polygon(20vw 0, 100% 0, 70% 100%, 15vw 100%);
  }

  .mv_layer_base_over .catch_en {
    font-style: italic;
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 100px;
    letter-spacing: 7px;
    line-height: normal;
    text-align: left;
    color: #fff;
    z-index: 15;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.6));
  }

  .bg_black_layer {
    width: 138%;
    min-height: 2704px;
    clip-path: polygon(100% 0, 0 64%, 0 56%, 100% 100%);
  }

  .bg_star_layer {
    width: 138%;
    min-height: 2704px;
    clip-path: polygon(100% 0, 0 64%, 100% 30%);
  }

  #top_about .img_satellite {
    position: absolute;
    top: -342px;
    left: 17px;
    width: 350px;
    height: auto;
    z-index: 0;
    pointer-events: none;
  }

  .policy_inner {
    padding: 100px 10% 100px 46%;
  }

  .policy_list li:nth-child(1) {
    margin-left: 14%;
  }

  .policy_list li:nth-child(2) {
    margin-left: 3%;
  }

  .policy_list li:nth-child(3) {
    margin-left: -7%;
  }

  .policy_list li:nth-child(4) {
    margin-left: -18%;
  }
}

@media screen and (max-width: 1600px) {
  .news_ticker {
    max-width: 425px;
    margin-right: -6%;
  }

  .mv_layer_overlay {
    clip-path: polygon(26vw 0, calc(26vw + 61%) 0, 61% 100%, 0vw 100%);
  }

  .top-policy::before {
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 0% 85%);
  }

  .policy_inner {
    padding: 100px 10% 100px 42%;
  }
    


  #top_recruit_area {
    margin-top: 28vw;
  }
}

@media screen and (max-width: 1500px) {
  #top .ttl_top {
    font-size: 200%;
  }

  #top_about .img_satellite {
    top: -320px;
    left: 60px;
    width: 320px;
  }
}

@media screen and (max-width: 1400px) {
  .catch_jp {
    margin-left: 8%;
  }

  .circle.c_main {
    width: 650px;
    height: auto;
    left: 0%;
  }

  .circle.c_sub1 {
    width: 580px;
    height: auto;
    top: 39%;
    left: 30%;
  }

  .circle.c_sub2 {
    width: 480px;
    height: auto;
    top: 39%;
    left: 65%;
  }

  .news_ticker {
    font-size: 12px;
  }

  .news_ticker .date,
  .news_ticker .txt {
    padding: 8px 10px;
  }

  .news_ticker .link {
    font-size: 11px;
    padding: 10px 10px;
  }

  .bg_black_layer {
     width: 112%;
    clip-path: polygon(100% 0, 0 56%, 100% 100%);
  }

  .bg_star_layer {
    width: 112%;
    clip-path: polygon(100% 0, 0 56%, 100% 30%);
  }

  .about_txt_inner {
    transform: translateY(73%);
  }

  .policy_list li:nth-child(2) {
    margin-left: 4%;
  }

  .policy_list li:nth-child(3) {
    margin-left: -7%;
  }

  .policy_list li:nth-child(4) {
    margin-left: -18%;
  }

  #top_recruit_area {
    margin-top: 20vw;
  }
  .policy_list .desc h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1300px) {
  #top h2 {
    font-size: 380%;
  }

  .circle.c_main {
    width: 640px;
    height: auto;
    left: 0%;
  }

  .circle.c_sub1 {
    width: 550px;
    height: auto;
    top: 39%;
    left: 30%;
  }

  .circle.c_sub2 {
    width: 470px;
    height: auto;
    top: 39%;
    left: 65%;
  }

    .mv_layer_base_over {
     top: 41.9%;
  }
  
  .catch_jp {
    margin-left: 6%;
    width: 350px;
  }

  .news_ticker {
    max-width: 345px;
    margin-right: -5%;
  }

  .about_txt_inner {
    padding: 30px;
    width: 90%;
  }

  .top-policy::before {
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 0% 80%);
  }

  .top-left-img {
    height: 125%;
  }

  .bg_black_layer {
    width: 83%;
    min-height: 2392px;
    clip-path: polygon(100% 0, 0 53%,100% 100%);
      
      
  }

  .bg_star_layer {
    width: 83%;
    min-height: 2392px;
    clip-path: polygon(100% 0, 0 53%, 100% 30%);
  }
  .bg_green_layer {
    clip-path: polygon(0 0, 0 100%, 37% 100%);
}

  .policy_list li:nth-child(1) {
    margin-left: 20%;
  }

  .policy_list li:nth-child(2) {
    margin-left: 10%;
  }

  .policy_list li:nth-child(3) {
    margin-left: -2%;
  }

  .policy_list li:nth-child(4) {
    margin-left: -14%;
  }

  .about_txt_inner {
    padding: 30px;
    width: 75%;
    margin-left: 130px;
  }

  .about_txt_inner {
    transform: translateY(67%);
  }

  .policy_inner {
    padding: 100px 10% 100px 38%;
  }

  #top_policy .br-sp {
    display: block;
  }

  #top_about .img_satellite {
    top: -210px;
    left: 29px;
    width: 215px;
  }

  #top_recruit_area {
    margin-top: 20vw;
  }

  .recruit_area_desc {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .policy_list li:nth-child(2) {
    margin-left: 9%;
  }

  .policy_list li:nth-child(3) {
    margin-left: -3%;
  }

  .policy_list li:nth-child(4) {
    margin-left: -14%;
  }

  #top_recruit_area {
    margin-top: 15%;
  }

  #top_policy h2 {
    margin-left: 1.7em;
  }

  .policy_list .desc p {
    font-size: 14px;
  }

  .about_txt_inner {
    transform: translateY(64%);
  }
  .mv_layer_base_over {
        top: 41.9%;

  }
}


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

  .mv_layer_base,
  .mv_layer_overlay {
    position: absolute;
    width: 105%;
  }

  .mv_layer_base_over {
    clip-path: polygon(20vw 0, 100% 0, 100% 100%, 5vw 100%);
  }

  .catch_jp {
     margin-left: 6.5vw;
     width: 29vw;
  }

  .mv_layer_base_over {
    top: 42.8%;
    clip-path: polygon(31vw 0, 100% 0, 100% 100%, 23vw 100%);
  }

  .news_ticker {
    max-width: 340px;
    margin-right: -5%;
  }

  #top_about h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .about_txt_inner {
    padding: 25px;
    width: 70%;
  }

  .mv_layer_overlay {
    clip-path: polygon(26vw 0, calc(26vw + 55.2%) 0, 55.2% 100%, 0vw 100%);
  }

  .top-policy::before {
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 0% 74%);
  }

  .policy_inner {
    padding: 100px 10% 100px 32%;
  }

  .about_txt_inner {
    transform: translateY(56%);
  }

  .policy_list li:nth-child(2) {
    margin-left: 11%;
  }

  .policy_list li:nth-child(3) {
    margin-left: 1%;
  }

  .policy_list li:nth-child(4) {
    margin-left: -9%;
  }

  #top_recruit_area {
    margin-top: 10%;
  }
.bg_black_layer {
    clip-path: polygon(100% 0, 0 51%, 100% 100%);
    }
.bg_star_layer {
    clip-path: polygon(100% 0, 0 51%, 100% 30%);
    }
}

@media screen and (max-width: 1050px) {
    .bg_black_layer {
        clip-path: polygon(100% 0, 0 53%, 100% 100%);
    }
    .bg_star_layer {
        clip-path: polygon(100% 0, 0 53%, 100% 30%);
    }
  }

@media screen and (max-width: 1000px) {
  /* MV周りのクリップパス調整 */
  .mv_layer_base_over {
    top: 43.5%;
    clip-path: polygon(33vw 0, 100% 0, 100% 100%, 24vw 100%);
  }

  .mv_layer_overlay {
    z-index: 3;
    background-color: var(--color-primary);
    clip-path: polygon(30vw 0, 100% 0, 100% 100%, 0vw 100%);
  }

  .mv_green_bg {
    display: none;
  }

  .mv_layer_base,
  .mv_layer_overlay {
    position: absolute;
    width: 100%;
  }

  #top h2 {
    font-size: 400%;
  }

  .mv_left_bg {
    width: 100%;
    height: 60%;
    transform: none;
    margin: 0;
  }

  .top-left-img {
    position: relative;
    width: 100%;
    height: 300px;
  }

  /* .top-policy */
  .top-policy {
    width: 100%;
    clip-path: none;
  }

  #top_policy {
    display: flex;
    flex-direction: column;
  }

  #top_policy .top-policy {
    order: 1;
    width: 100%;
    padding-bottom: 0;
    position: relative;
    margin-left: 0;
    min-height: auto;
  }

  .top-left-img {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  /* 4. 画像の表示切り替え --- */
  /* PC用を消す */
  .top-left-img .top_photo_pc {
    display: none;
  }

  /* SP用を表示 */
  .top-left-img .top_photo_sp {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* .policy_inner */
  .policy_inner {
    padding: 50px 20px;
  }

  /* #top_policy h2 */
  #top_policy h2 {
    text-align: center;
    margin-right: 3em;
    margin-top: 1em;
  }

  .policy_list {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
  }

  .policy_list li {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .policy_list li:nth-child(n) {
    margin-left: 0;
  }

  .news_ticker {
    max-width: 600px;
    margin: 15px auto;
  }

  /* .policy_ttl */
  .policy_ttl {
    margin: 0 auto;
  }

  /* #top_policy .btn_blue */
  #top_policy .btn_blue {
      display: block;
      margin: 0 auto !important;
      padding: 15px 8px;
       text-align: center;
      transform: none;
      padding-right: 50px !important;
      width: 200px;
  }

  /* --- Top About レイアウト変更（縦積み） --- */
  #top_about {
    display: flex;
    flex-direction: column-reverse;
    /* 文字(上)・画像(下)にするため逆順に */
    top: 0;
    margin-top: -50px;
    /* 上のセクションと少し重ねる */
    position: relative;
  }

  /* .top-policy::before */
  .top-policy::before {
    display: none;
  }

  .bg_layer_group {
    display: none;
  }

  /* --- 3. テキストエリア（親箱） --- */
  .about_content_area {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    background-color: transparent;
    clip-path: none;
    position: relative;
    padding: 80px 5% 120px;
    box-sizing: border-box;
    z-index: 10;
  }

  .about_content_area::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 950px;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0%, 100% 40%, 0% 100%);
    z-index: -1;
  }

  /* --- 4. 衛星画像の配置 --- */
  #top_about .img_satellite {
    position: absolute;
    top: auto;
    bottom: -150px;
    right: -3%;
    left: auto;
    width: 35vw;
    max-width: 230px;
    min-width: 150px;
    z-index: 20;
  }

  .about_txt_inner {
   padding: 0;
   width: 100%;
   margin: 0;
   transform: none;
   text-align: left;
   left: 0;
  }

  /* 文字色を白に */
  #top_about h2,
  #top_about h3,
  #top_about p {
    color: #fff;
    text-align: left;
  }

  #top_about h2 {
    margin-bottom: 30px;
  }

  #top_about .btn_blue {
    margin: 0;
    display: inline-block;
    width: auto;
  }

  /* 地球儀エリア（下側） */
  .about_img_area {
    position: relative;
    top: auto;
    left: -80px;
    width: 95%;
    height: auto;
    margin-top: -80px;
    z-index: 50;
  }

  .about_img_area img {
    object-fit: contain;
    width: 100%;
    display: block;
  }

  /* Recruit Area */
  #top_recruit_area h2 {
    margin-bottom: 30px;
    text-align: left;
  }

  .bg_green_layer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 96%;
    height: 65%;
    min-height: 0;
    clip-path: polygon(100% 6%, 0% 100%, 100% 100%);
    z-index: -1;
    background-color: var(--color-secondary);
  }

  .recruit_ttl_group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    order: 1;
  }

  .recruit_area_inner {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: 500px;
  }

  #top_recruit_area h2,
  .recruit_area_ttl {
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
  }

  .recruit_area_desc {
    text-align: left;
  }

  .container-r {
    flex-direction: column;
    gap: 30px;
    order: 2;
    width: 100%;
    max-width: 500px;
  }

  .container-r .item-1 {
    margin-top: 0px;
    margin-left: 0px;
    z-index: 0;
  }

  .container-r .item-0 {
    z-index: 0;
  }

  .container-r .item-0 img,
  .container-r .item-1 img {
    filter: drop-shadow(5px 5px 0px #ffffff);
  }

  .recruit_area_btn {
    order: 3;
    right: auto;
    bottom: auto;
    margin: 50px auto 0px auto;
    text-align: center;
    position: relative;
  }

  #top_recruit_area .btn_blue {
    display: inline-block;
    color: var(--color-secondary);
    background-color: #fff;
    border-style: solid;
    border-width: 2px;
  }

  .recruit_area_desc {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 935px) {
  .mv_layer_base_over {
    top: 43.9%;
    clip-path: polygon(35vw 0, 100% 0, 100% 100%, 27vw 99%);
  }
}

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

  .mv_catch_area .catch_en {
    font-size: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 85px;
  }

  .catch_jp {
    display: none;
  }

  .catch_jp_sp {
    display: block;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    z-index: 20;
  }

  .mv_catch_area {
    top: 25%;
    left: 5%;
    width: 90%;
    text-align: center;
  }

  .mv_catch_area img {
    margin: 0 auto 15px;
  }

  .mv_slider_area {
    width: 100%;
    height: 70%;
    top: auto;
    bottom: 0;
  }

  .circle.c_main {
    top: 27%;
    width: 370px;
    height: auto;
    left: 5%;
  }

  .circle.c_sub1 {
    width: 330px;
    height: auto;
    top: 27%;
    left: 40%;
  }

  .circle.c_sub2 {
    width: 290px;
    height: auto;
    top: 27%;
    left: 65%;
  }

  .policy_list .num {
    font-size: 65px;
    margin-right: 18px;
  }
}

@media screen and (max-width: 768px) {
  .top-policy::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  #top_recruit_area {
    margin-top: 15vw;
  }
    .bg_star_layer {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 697px) {
  .mv_layer_overlay {
    z-index: 3;
    background-color: var(--color-primary);
    clip-path: polygon(50vw 0, 100% 0, 100% 100%, 0vw 100%);
  }

  #top_about .img_satellite {
    bottom: -120px;
  }
}

@media screen and (max-width: 600px) {
  #top .ttl_top {
    font-size: 150%;
  }

  .news_ticker .txt {
    font-size: 11px;
  }

  .news_ticker .link {
    font-size: 11px;
    padding: 10px 10px;
  }

  #top_policy h2 {
    text-align: center;
    margin-right: 0em;
    margin-left: -1.3em;
    margin-top: 1em;
  }
}

@media screen and (max-width: 530px) {
  .mv_catch_area .catch_en {
    font-size: 65px;
    line-height: 68px;
  }

  #main_visual {
    height: 35vh;
    min-height: 600px;
    pointer-events: none;
  }

  .circle.c_main {
    top: 22%;
    width: 310px;
    height: auto;
    left: 1%;
  }

  .circle.c_sub1 {
    width: 250px;
    height: auto;
    top: 22%;
    left: 35%;
  }

  .circle.c_sub2 {
    width: 200px;
    height: auto;
    top: 22%;
    left: 65%;
  }

  #top_about .img_satellite {
    bottom: -100px;
  }

  .container-r-ttl {
    font-size: 17px;
  }
}

@media screen and (max-width: 430px) {
  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  #top_policy h2 {
    font-size: 40px;
  }

  #top .ttl_top {
    font-size: 130%;
  }

  .mv_catch_area .catch_en {
    font-size: 55px;
    line-height: 60px;
  }

  .mv_layer_overlay {
    clip-path: polygon(60vw 0, 100% 0, 100% 100%, 0vw 100%);
  }

  .circle.c_main {
    top: 22%;
    width: 320px;
    height: auto;
    left: 1%;
  }

  .circle.c_sub1 {
    width: 250px;
    height: auto;
    top: 22%;
    left: 35%;
  }

  .circle.c_sub2 {
    width: 200px;
    height: auto;
    top: 22%;
    left: 65%;
  }

  .policy_list .desc h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .policy_list .num {
    font-size: 55px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 400px) {
  #top_about p {
    font-size: 14px;
  }

  .recruit_area_desc {
    margin-bottom: 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .container-r {
    gap: 20px;
  }
}

@media screen and (max-width: 380px) {
  #top .ttl_top {
    font-size: 120%;
  }

  .mv_catch_area .catch_en {
    font-size: 50px;
    line-height: 55px;
  }

  .mv_layer_overlay {
    clip-path: polygon(70vw 0, 100% 0, 100% 100%, 0vw 100%);
  }

  .circle.c_main {
    top: 22%;
    width: 310px;
    height: auto;
    left: 1%;
  }

  .circle.c_sub1 {
    width: 250px;
    height: auto;
    top: 22%;
    left: 35%;
  }

  .circle.c_sub2 {
    width: 200px;
    height: auto;
    top: 22%;
    left: 65%;
  }
}

@media screen and (max-width: 355px) {
  .mv_catch_area .catch_en {
    font-size: 45px;
    line-height: 52px;
  }

  .policy_list .desc h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .container-r {
    gap: 10px;
    max-width: 350px;
  }
}

@media screen and (max-width: 320px) {
  #top h2 {
    font-size: 220%;
  }
}