@charset "utf-8";
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, table, tr, th, td, form, input, button, textarea, header, footer, nav, section, article, aside, main, figure, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    
   
}

html { 
    scroll-padding-top: 100px;   
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-Sans;
}

/* 画像の「右クリック禁止」や「ドラッグ禁止」 */
img {
  pointer-events: none; /* 画像のクリック・右クリックを無効にする */
  user-select: none;    /* 選択禁止 */
  -webkit-user-drag: none; /* Safariなどでのドラッグ禁止 */
}


/* ヘッダー、フッター */
header, footer {
    width: 100%;
}







/* 最初に全部消す（CSSで改行の有無を切り替える） */
.sp-br, .pc-br , .pc-br2 ,.tab-br {
  display: none;
}
/* モバイル時だけ表示 */
@media (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

/* PC時だけ表示 */
@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}

/* PC時だけ表示 */
@media (min-width: 1025px) {
  .pc-br2 {
    display: inline;
  }
}

/* 600px 以上 768px 以下のときだけ表示 */
@media (min-width: 600px) and (max-width: 768px) {
  .tab-br {
    display: inline;
  }
}




/* ヘッダー */
#header {
  position: fixed;
  top: 0;
  /* left: 0; */
  right: 0;
  height: 50px;
  background-color: rgba(12,134,182, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transform: translateY(0);
  transition: transform 0.3s ease;
  z-index: 1000;
  width: 520px;
  max-width: 100vw;
  min-width: 520px;
  }
  
  #header.hide {
    transform: translateY(-100%);
  }
  
  #header.show {
    transform: translateY(0);
  }
  


  
  /* ロゴ部分 */
  .logo {
    display: block;
    width: 90px;
    position: fixed;   /* ← ここに移動 */
    top: 20px;
    left: 20px;
    padding: 10px;
    z-index: 50;
  }
  
  .logo img {
    width: 100%;       /* ← 親要素に合わせる */
    height: auto;
    display: block;    /* 画像の余白防止 */
  }
  
  
  /* ナビゲーション部分 */
  header nav ul {
    display: flex;  /* 横並びに */
    list-style: none;  /* 項目のマーカー（・）を非表示に */
    padding: 0;  /* デフォルトのパディングを削除 */
    margin: 0;  /* デフォルトのマージンを削除 */
  }
  
  /* ナビゲーションリンク */
  .header-nav {
    padding: 0 0px 0px 0px;
  }
  
  header nav ul li {
    margin-right: 20px;  /* 各リスト項目の間にスペースを追加 */
  }
  
  /* 修正: ナビゲーションリンクのデザイン */
  header nav a {
    font-family: "Noto Sans JP", sans-Sans;
    font-size: 13px;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    letter-spacing: 0.05vw;
    white-space: nowrap;
  }
  
  header nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background-color: white;
    transition: width 0.3s ease-in-out;
  }
  
  header nav a:hover::after {
    width: 100%;
  }


/* --- 共通スタイル --- */
.menu-icon {
  display: none;  /* SP時のみ表示（後述のmediaで） */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 23px;
  cursor: pointer;
  padding: 0 50px;
}

.menu-icon span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 5px;
}

/* SPメニュー表示時 */
body.menu-open .overlay {
  display: flex;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 998;
}

.navbar-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 45vh;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-Sans;
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05vw;
  white-space: nowrap;
}
  

/* PC表示（幅769px以上） */
@media (min-width: 769px) {
  .menu-icon,
  .overlay {
    display: none !important;
  }
  .header-nav {
    display: block;
  }
}

main {
    width: 100%;
    /* position: relative; */
    overflow: hidden;
}

.carousel-container {
  aspect-ratio: 2.45/1 ;
  width: 70%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  margin-top: 850px;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out; /* じんわりフェードイン・フェードアウト */
}

.carousel-images img.active {
  opacity: 1;
  z-index: 1;
}


.indicators {
    position: absolute;
    bottom: 10px; /* 画像の下部に配置 */
    left: 50%;
    transform: translateX(-50%); /* 中央揃え */
    display: flex;
    gap: 10px;
    z-index: 10; /* インジケーターが画像より前面に表示される */
}

.indicator {
    width: 8px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgb(12,134,182); /* アクティブ状態の色 */
}


/* ここまでスライダー */

.TOP_Movie {
  display: grid;
  place-items: center;  /* 中央に配置 */
  width: 100%;
  aspect-ratio: 48 / 23; /* ← 1920×920 の比率 */
  position: relative;
}

.aircargo-video {
  width: 100%;
  height: 100%;        /* ← auto ではなく100%を使うとピタッとフィット */
  object-fit: cover;   /* はみ出してもよいので画面いっぱいに表示 */
  display: block;
  grid-area: 1 / 1;
  aspect-ratio: 48 / 23; /* ← 1920×920 の比率 */
}

.ACHtxt_TM {
  position: absolute;
  bottom: -330px;
  left: 38%;
  transform: translateX(-50%) translateY(0);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: -3px;
  color: rgb(12, 134, 182);
  font-size: 145px;
  line-height: 130px;
  white-space: nowrap;
  text-align: left;
  z-index: 100;
}




.ACH_line {
  width: 100%;
  background-color: rgb(12,134,182);
  margin: 0px 0; /* 線と線の間隔（調整可） */
  height: 10px;
}

.ACH_line_A {
  width: 3000px;
  background-color: rgb(12,134,182);
  margin: 0px 0;
  height: 1px;
  position: absolute;
  left: -200%;
  top: 95px;
}

.ACS_Haneda_toha_contents {
      display: block;
      padding: 0px;
      /* margin: 0 auto; */
      width: auto;
      position: relative;
      height: auto;
}

.ACS_Haneda_toha_ {
  position: absolute;
  top: -480px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -17vw;
  z-index: 20;
  padding-left: 50px;
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .ACS_Haneda_toha_ {
      top: 0px !important; /* Safariでの上方向ズレ防止 */
    }
  }
}

#ACS_Haneda_toha { 
  scroll-margin-top: 500px;
}


#ACS_Haneda_toha h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2.5px;
  margin-top: 0px;
  color: rgb(12,134,182);
  font-size: 60px;
  text-align: left;
}

#ACS_Haneda_toha .ACHtxt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 300;
  letter-spacing: 0;
  margin-top: 0px;
  color: rgb(12,134,182);
  font-size: 18px;
  text-align: left;
  line-height: 35px;
  padding: 5px 0px 0px 0;
}


.vehicle-section {
  text-align: left;
  padding: 0px 0px 0px 0;
}

.vehicle-section h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 39px;
  color: rgb(12, 134, 182);
  padding: 60px 0px 0px 25vh;
  letter-spacing: 0px;
  text-align: left;
}

.VS_txt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  font-size: 14px;
  color: rgb(12, 134, 182);
  display: inline-block;
  padding: 0px 0px 0px 25vh;
  letter-spacing: 4px;
  text-align: left;
}






.vehicle-scroll {
  width: 100%;
  height: 113px; /* 必要に応じて調整 */
  overflow: hidden;
  position: relative;
  padding-top: 30px;
}

.scroll-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
  width: calc(2400px * 4); /* 画像4枚分（複製含む） */
}

.vehicle-image {
  width: 2400px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-2400px);
  }
}




.scroll-track01 {
  display: flex;
  animation: scroll-right 30s linear infinite;
  width: calc(2400px * 4); /* 画像4枚分（複製含む） */
}

.scroll-image01 {
  width: 2400px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2400px); /* スタート位置は右端 */
  }
  100% {
    transform: translateX(0); /* 0に到達すると左端 */
  }
}






  /* 輸出部門 */
  .Yusyutu_Movie {
    max-width: 100%;
    min-width: 768px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 0px;
  }
  
  /* .Yusyutu_Movie img {
    width: 100%;
    height: auto;
    display: block;
  } */

  .GyoumuNaiyou_video {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 64 / 25;
    object-fit: cover;
  }

  .GN_txt {
    position: absolute;
    top: 110%;
    left: 30%;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 0.5px;
    font-size: 57px;
    white-space: nowrap;
}

  .Yusyutu_Movie h2 {
    position: absolute;
    top: 97%;
    left: 10%;
    background-color: rgb(12,134,182);
    padding: 5vw;
    font-family: "Noto Sans JP", Sans;
    font-weight: 200;
    color: rgb(255, 255, 255);
    letter-spacing: 8.5px;
    font-size: 30px;
}

  /* 輸入部門 */
.Yunyuu_Movie {
  max-width: 100%;
  min-width: 768px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 0px;
  }
  
  .Yunyuu_Movie img {
    width: 100%;
    height: auto;
    display: block;
  }

  .Yunyuu_Movie h2 {
    position: absolute;
    TOP: 97%;
    left: 10%;
    background-color: rgb(12,134,182);
    padding: 5vw;
    font-family: "Noto Sans JP", Sans;
    font-weight: 200;
    color: rgb(255, 255, 255);
    letter-spacing: 8.5px;
    font-size: 30px;
}


.Bumon_01_PH_SP {
  display: none;
}



.Bumon_copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  color: rgb(12,134,182);
  letter-spacing: 4.5px;
  font-size: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 120px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;

  position: absolute;
  top: 0%;
  left: 80%; /* お好みで調整可能（中央は50%） */
  transform: translate(-50%, -50%); /* 中央基準に補正 */
  z-index: 10;
}


/* 輸出輸入部門の紹介画像 */

.Bumon_01 {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 20px auto 0;
    min-width: 768px;
    height: 45vh;
  }
  
  .Bumon_01 img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* margin-left: 25px; */
    /* margin-top: 350px; */
    position: absolute;
    top: 300px;
    left: -210px;
  }
  
.Bumon_01_txtBox {
    width: 420px;
    position: absolute;
    top: 610px;
    left: 470px;
    z-index: 1;
  }

.Bumon_01_Number {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    color: rgb(12,134,182);
    font-size: 130px;
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: 100;
    font-style: italic;  /* テキストを斜体にする */
  }


  .Bumon_01txt {
    top: 280px;
    left: -70px;
    color: rgb(12,134,182);
    padding: 200px 20px 20px 20px;
    width: auto;
    height: 190px;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
  }
  
  .Bumon_01txt h3 {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 4.5px;
    font-size: 25px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.8);
  }



  .Bumon_01txt p {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 0.5px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.7); /* 白半透明 */
  }

  .Bumon_02 {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 80px auto 50px;
    min-width: 768px;
    height: 1330px;
  }
  
  .Bumon_02 img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* margin-left: 25px; */
    /* margin-top: 350px; */
    position: absolute;
    top: 570px;
    left: 400px;
    padding-top: 80px;
  }
  
.Bumon_02_txtBox {
  width: 420px;
  position: absolute;
  top: 450px;
  left: -50px;
  z-index: 2;
  }

.Bumon_02_Number {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    color: rgb(12,134,182);
    font-size: 130px;
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: 100;
    font-style: italic;  /* テキストを斜体にする */
}


  .Bumon_02txt {
    top: 280px;
    left: -70px;
    color: rgb(12,134,182);
    padding: 200px 20px 20px 20px;
    width: auto;
    height: 190px;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
  }
  
  .Bumon_02txt h3 {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 4.5px;
    font-size: 25px;
    position: relative;
    text-align: left;
    white-space: nowrap;
  }



  .Bumon_02txt p {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 0.5px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.7); /* 白半透明 */
  }



  .centered-image {
    display: none;
  }


  /* 横点線 */
  .custom-dotted-line {
    width: 45%;
    height: 4px;
    background-image: radial-gradient(circle, rgb(12,134,182) 2px, transparent 2px);
    background-size: 12px 4px;
    background-repeat: repeat-x;
    margin: 50px auto;
  }
  
  .blue_BG  {
    margin-top: 0px;
    width: 100%;
    background-color: rgba(12,134,182, 0.15);
    padding: 0px 0 50px 0;
  }


#OWOS_Contents {
  margin-top: 0px;
  width: 100%;
  padding: 0px 0;
  position: relative;
}

  
  
 /* .YW_Yokosen {
  width: 100%;
  height: 20px;
  background-color: rgb(255, 251, 0);
  padding: 0px 0;
  margin-top: 20px;
 } */



/* コンテンツ1 */



.OWOS_title {
  padding: 370px 0px 80px 9vw;
}

.ACHtxt_RV {
  position: absolute;
  top: 0;
  left: 45%;
  transform: translateX(-50%) translateY(0);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: 3px;
  color: rgb(12, 134, 182);
  font-size: 135px;
  line-height: 145px;
  white-space: nowrap;
  text-align: left;
  z-index: 100;
  margin-bottom: -160px;
  padding-top: 60px;
}


.OWOS_txt {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 0.5px;
    font-size: 57px;
}

.OWOS_txt01 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  color: rgb(12,134,182);
  letter-spacing: 0.5px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-left: 45px;
  line-height: 30px;
}


.OWOS_Contents_01 {
  display: flex;
  width: 1300px;
  gap: 20px;
  margin: 0px auto 0;
}

.photo-block {
  flex: 1;
  text-align: center;
}

.pb_photo {
  position: relative;
  height: 680px;
}

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

.overlay_RV {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(12,134,182, 0.3);
  transform: translate(-10px, 10px); /* ← 左下へ初期位置ズレ */
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.overlay_RV02 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(12,134,182, 0.3);
  transform: translate(-10px, 10px); /* ← 左下へ初期位置ズレ */
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.overlay_RV03 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(12,134,182, 0.3);
  transform: translate(-10px, 10px); /* ← 左下へ初期位置ズレ */
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pb_photo:hover .overlay_RV {
  opacity: 1;
  transform: translate(10px, -10px); /* ← 右上へズレる */
}

.overlay_RV .text {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-size: 48px;
  line-height: 1.8;
  white-space: pre-line;
  text-align: left;
  padding-top: 50px;
}

.pb_photo:hover .overlay_RV02 {
  opacity: 1;
  transform: translate(10px, -10px); /* ← 右上へズレる */
}

.overlay_RV02 .text {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-size: 48px;
  line-height: 1.8;
  white-space: pre-line;
  text-align: left;
  padding-top: 50px;
}

.pb_photo:hover .overlay_RV03 {
  opacity: 1;
  transform: translate(10px, -10px); /* ← 右上へズレる */
}

.overlay_RV03 .text {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-size: 48px;
  line-height: 1.8;
  white-space: pre-line;
  text-align: left;
  padding-top: 50px;
}

.caption {
  text-align: center;
  margin-top: 10px;
}

.caption p {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  font-size: 14px;
  color: rgb(12,134,182);
  padding-top: 13px;
}

.caption h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: rgb(12, 134, 182);
  padding-top: 8px;
  white-space: nowrap;
}

.OWOS_capcopy {
  display: none;
}

/* ▼ ポップアップ関係 ▼ */

.popup-overlay {
  display: none;
  justify-content: center;
  align-items: flex-start; /* ← 上詰めに */
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  overflow-y: auto; /* ← ポップアップ全体をスクロール */
}

.popup-content {
  background-color: rgb(225, 239, 245);
  width: 90vw;
  max-width: 1300px;
  margin: 5vh auto;
  padding: 70px;
  box-sizing: border-box;
  border-radius: 12px;
  position: relative;
  /* ↓ 削除 */
  /* height: 90vh; */
  /* max-height: 1070px; */
  /* overflow-y: auto; */
}


.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #007a9a;
  cursor: pointer;
}

.popup-layout {
  display: flex;
  gap: 40px;
}

.popup-text {
  flex: 1;
  min-width: 0;
  /* ↓ overflow無しに */
}

.popup-text h2 {
  font-family: "Noto Sans JP", Sans;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgb(12,134,182);
}

.popup-text h3 {
  font-family: "Noto Sans JP", Sans;
  font-size: 27px;
  font-weight: 600;
  margin-top: 30px;
  color: rgb(12,134,182);
  margin-bottom: 10px;
}

.popup-text p {
  font-size: 18px;
  line-height: 2;
  color: rgb(12,134,182);
}

.popup-photo {
  flex: 1;
  min-width: 0;
}

.popup-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.popup_caption {
  margin-top: 8px;
  font-size: 13px;
  text-align: right;
  color: rgb(12,134,182);
}

.popup_caption h4 {
  font-size: 16px;
  margin-top: 4px;
  color: rgb(12,134,182);
}

.popup-vertical-text {
  font-family: "Noto Sans JP", Sans;
  position: unset;
  top: 70%;
  right: 180px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgb(12, 134, 182);
  font-size: 34px;
  line-height: 2;
  text-align: left;
  font-weight: 200;
  white-space: nowrap;
  margin: 240px 0 0px 150px;
}

.popup-block {
  display: block !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}



/* 採用情報 */
#SaiyouJyouhou {
    text-align: center;
    margin-top: 125px;
}

.SaiyouJyouhou_title {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 20.5px;
  display: inline-block;
  padding: 5px 20px 5px 35px;
  margin-top: 40px;
  /* border: 1px solid rgb(12,134,182); */
  color: rgb(12,134,182);
  font-size: 25px;
  background-color: white;
  margin: 40px 100px 0;
  text-align: center;
  }

  .SaiyouJyouhou_01 {
    font-family: "Noto Sans JP", Sans;
    font-weight: bold;
    letter-spacing: 4.5px;
    margin-top: 40px;
    color: rgb(12,134,182);
    font-size: 40px;
  }

  .SaiyouJyouhou_01_SP {
     display: none; /*PC時 非表示 */
  }

  .SaiyouJyouhou_02 {
    font-family: "Noto Sans JP", Sans;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 30px;
    color: rgb(12, 134, 182);
    font-size: 18px;
  }

  .SaiyouJyouhou_03 {
    font-family: "Noto Sans JP", Sans;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 10px;
    color: rgb(12, 134, 182);
    font-size: 16px;
    line-height: 2.7vh;
  }



  .SaiyouJyouhou_MV video {
    width: 555px;
    height: auto;
    margin:  30px auto 0;
  }


  .SaiyouJyouhou_MV {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  
  .SaiyouJyouhou_video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .SJMV_txt {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .sound-toggle {
    position: absolute;
    bottom: 27px;
    right: 135px;
    background-color: rgb(255 255 255 / 100%);
    color: #000000;
    border: none;
    padding: 2px 10px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    z-index: 2;
  }
  
  /* .modal {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: block; 
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    padding-top: 150px;
  } */
  
/* 表示状態クラス（JSから付ける） */
/* .modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 960px;
}

.modal-video {
  width: 100%;
  height: auto;
  display: block;
}

.close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
} */



  .SaiyouJyouhou_MV a,
  .SaiyouJyouhou_MV a:visited,
  .SaiyouJyouhou_MV a:hover,
  .SaiyouJyouhou_MV a:active,
  .SaiyouJyouhou_MV a:focus {
    color: inherit;
    text-decoration: underline;
  }

  .SJMV_txt {
    font-family: "Noto Sans JP", Sans;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 0px;
    color: rgb(12,134,182);
    font-size: 13px;
    text-align: center;
  }


/* 採用サイトへボタン */
.recruit-button {
      font-family: "Noto Sans JP", Sans;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 24px;
      background-color: rgb(12,134,182);
      border-radius: 9999px;
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s ease;
      margin-top: 40px;
      letter-spacing: 2px;

  }

  .arrow-filled::after {
    content: "";
    display: inline-block;
    margin-left: 0.4em;
  
    /* 三角形のスタイル */
    width: 0;
    height: 0;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.6em solid currentColor;
  
    /* 縦位置調整 */
    vertical-align: middle;
    transform: translateY(-2px); /* 下がりすぎる場合は調整 */
  }


  .recruit-button:hover {
    background-color: white;
    color: rgb(12,134,182);
  }

/* 動画コンテンツ */

.Mv_contents {
  width: 400px;
  margin: 20px auto 0;
}

.Mv_contents img {
  width: 400px;
}

.Mv_contents01_txt_01 {
  font-family: "Noto Sans JP", Sans;
  font-weight: bold;
  letter-spacing: 2.5px;
  margin-top: 5px;
  color: rgb(12,134,182);
  font-size: 20px;
  line-height: 2.7vh;
}

.Mv_contents01_txt_02 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 2.5px;
  margin-top: 0px;
  color: rgb(12,134,182);
  font-size: 15px;
  line-height: 1.5vh;
}


/* グループ一覧 */
#Group_Ichiran {
    text-align: center;
    }
    
.Group_title {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 9.5px;
  display: inline-block;
  padding: 5px 20px 5px 30px;
  margin-top: 40px;
  /* border: 1px solid rgb(12,134,182); */
  color: rgb(12,134,182);
  font-size: 25px;
  background-color: white;
  margin: 10px 100px 10px;
  text-align: center;
  }

  .company-buttons a {
    font-family: "Noto Sans JP", Sans;
    border: 1px solid rgb(12,134,182);
    color: rgb(12,134,182);
    background-color: transparent;

    display: block;
    text-align: center;
    padding: 15px 10px;
    margin: 10px auto;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgb(12,134,182);
    transition: all 0.3s ease;
    font-size: 18px;
    width: 320px;
  }
  
  .company-buttons a:hover {
    background-color: rgb(12,134,182);
    color: white;
  }

/* 会社概要 */
.company-profile {
    background-color: rgb(12,134,182);
    color: white;
    padding: 40px 20px;
    font-family: sans-Sans;
    margin-top: 0px;
  }
  
  .company-profile h2 {
    font-family: "Noto Sans JP", Sans;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
  }
  
  .company-profile table {
    width: 100%;
    max-width: 600px;
    margin: 10px auto 0;
    border-collapse: collapse;
  }
  
  .company-profile th,
  .company-profile td {
    padding: 15px 10px;
    vertical-align: top;
    border-bottom: 1px solid white;
    font-size: 16px;
  }
  
  .company-profile th {
    font-family: "Noto Sans JP", Sans;
    width: 150px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    letter-spacing: 3px;
    font-size: 11pt;
  }
  
  .company-profile td {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    letter-spacing: 2px;
    font-size: 10pt;
  }

/* フッター（プライバシーポリシー＆コピーライト） */
footer {
    background-color: rgb(12,134,182);
    color: white;
    font-family: sans-Sans;
    text-align: center;
  }

.PrivacyPolicy {
  font-family:  "Noto Sans JP", Sans;
  font-weight: 200;
}

  .footer_PrivacyPolicy {
    border: 1px solid rgb(255, 255, 255);
    width: 300px;
    margin: 0 auto;
  }

  .footer_PrivacyPolicy a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;          /* 親要素の文字色（白）を引き継ぐ */
    text-decoration: none;   /* 下線を消す */
  }

  .footer_PrivacyPolicy a:hover {
    color: rgb(12,134,182);
    transition: all 0.3s ease;
  }

  .footer_PrivacyPolicy:hover {
    background-color: #fff;
    transition: all 0.3s ease;
  }


.footer_copyright {
    margin-top: 0px;
    font-size: 16px;
    font-weight: 300;
}


.copyright {
  font-family: "Noto Sans JP", Sans;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 7pt;
  padding: 50px 0;
}

.OWOS_title_SP {
  display: none;
}

.OWOS_Contents_02_SP {
  display: none;
}



/* スクロールで表示されるアニメーション */
/* 初期状態 */
.fadein {
  opacity: 0;
  transform: translateY(50px); /* 下から表示する */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition-delay: 0s; /* デフォルトは遅延なし */
}

/* スクロール時に表示される */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}




/* 初期状態 */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px); /* 画面外右側に配置 */
  transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーションの遷移 */
}

/* 画面内に入るとき */
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0); /* 元の位置に戻す */
}


.TOP_Movie_SP {
  display: none;
}


.popup-svg-trigger {
  display: none;
}


/* 1025px以下に適用されるCSS（調整用）----------------------------------------------------------- */

@media screen and (max-width: 1025px) {
	/* 1025px以下に適用されるCSS */

    .TitleACS img {
        width: 70%;
        position: relative;
        TOP: -70%;
        transform: translate(20%, 0%);
    }


.ACHtxt_TM {
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
  }
  
  /* .ACHtxt_TM 内のテキストにデザインを移動 */
  .ACHtxt_TM .fadein {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: -3px;
    color: rgb(12, 134, 182);
    font-size: 145px;
    line-height: 130px;
    white-space: nowrap;
    text-align: center;
    z-index: 100;
  
    opacity: 0;
    transform: translateY(30px); /* ← X方向なし！ */
    transition: all 0.6s ease;
  }
  
  .ACHtxt_TM .fadein.show {
    opacity: 1;
    transform: translateY(0); /* Y方向アニメーションだけ */
  }
  
  .TOP_Movie {
    display: none;
  }

  .TOP_Movie_SP {
    display: grid;
    place-items: center;  /* 中央に配置 */
    width: 100%;
    aspect-ratio: 48 / 23; /* ← 1920×920 の比率 */
    position: relative;
  }

  .ACS_Haneda_toha_ {
    position: absolute;
    top: -510px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    z-index: 20;
    width: 670px;
    padding-left: 0px;
}

#ACS_Haneda_toha h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2.5px;
  margin-top: 0px;
  color: rgb(12, 134, 182);
  font-size: 60px;
  text-align: center;
}

#ACS_Haneda_toha .ACHtxt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 300;
  letter-spacing: 0;
  margin-top: 0px;
  color: rgb(12, 134, 182);
  font-size: 18px;
  text-align: center;
  line-height: 35px;
  padding: 5px 0px 0px 0;
}

  .carousel-container {
    aspect-ratio: 2.45 / 1;
    width: 70%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    margin-top: 600px;
    margin: 900px auto 0px;
}
  
  .vehicle-section h2 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 39px;
    color: rgb(12, 134, 182);
    padding: 60px 0px 0px 0px;
    letter-spacing: 0px;
    text-align: center;
}


.VS_txt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  font-size: 14px;
  color: rgb(12, 134, 182);
  display: block;
  padding: 0px 0px 0px 0;
  letter-spacing: 4px;
  text-align: center;
}


.GN_txt {
  position: absolute;
  top: 110%;
  left: 50%;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: rgb(12, 134, 182);
  letter-spacing: 0.5px;
  font-size: 57px;
  transform: translateX(-50%);
  white-space: nowrap;
}



#SaiyouJyouhou {
  text-align: center;
  margin-top: 60px;
}

.SaiyouJyouhou_title {
font-family: "Noto Sans JP", Sans;
font-weight: 200;
letter-spacing: 20.5px;
display: inline-block;
padding: 5px 20px 5px 30px;
margin-top: 40px;
/* border: 1px solid rgb(12,134,182); */
color: rgb(12,134,182);
background-color: white;
margin: 40px 100px 0;
text-align: center;
}

.SaiyouJyouhou_01 {
  font-family: "Noto Sans JP", Sans;
  font-weight: bold;
  letter-spacing: 4.5px;
  margin-top: 40px;
  color: rgb(12,134,182);
  font-size: 40px;
}

     .Yusyutu_Movie h2 {
        position: absolute;
        TOP: 94%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgb(12,134,182);
        padding: 0px 30px 2px 40px;
        font-family: "Noto Sans JP", Sans;
        font-weight: 200;
        letter-spacing: 18.5px;
        font-size: 30px;
    }


    .Bumon_copy_sp {
    display: none;
    }

    .Bumon_copy {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 200;
      color: rgb(12, 134, 182);
      letter-spacing: 4.5px;
      font-size: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin: 0;
      padding: 0;
      line-height: 120px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      white-space: nowrap;
      position: absolute;
      top: -5%;
      left: 50%;
      left: 40%;
      z-index: 10;
    }

    .Bumon_01 {
      position: relative;
      max-width: 900px;
      width: 100%;
      margin: 110px auto 0;
      min-width: 768px;
      height: 45vh;
      display: flex;
  }

    .Bumon_01 img {
      position: absolute;
      top: 650px;
      right: 30px;
      margin-left: 230px;
      width: 50%;
    }

    .Bumon_02 img {
      margin-left: 20px;
      position: absolute;
      top: 350px;
      right: 30px;
      width: 50%;
    }

    .Bumon_01_Number {
      font-family: "Open Sans", sans-serif;
      font-weight: 500;
      color: rgb(12,134,182);
      font-size: 130px;
      position: absolute;
      top: 10px;
      left: 30px;
      z-index: 100;
      font-style: italic;  /* テキストを斜体にする */
    }


    .Bumon_01txt {
      top: 280px;
      left: -70px;
      color: rgb(12,134,182);
      padding: 200px 20px 20px 20px;
      width: auto;
      height: 190px;
      box-sizing: border-box;
      z-index: 2;
      text-align: center;
    }
    
    .Bumon_01txt h3 {
      font-family: "Noto Sans JP", Sans;
      font-weight: normal;
      color: rgb(12,134,182);
      letter-spacing: 4.5px;
      font-size: 25px;
      position: relative;
      text-align: left;
      white-space: nowrap;
      background-color: rgba(255, 255, 255, 0.8);
    }
  
  
  
    .Bumon_01txt p {
      font-family: "Noto Sans JP", Sans;
      font-weight: normal;
      color: rgb(12,134,182);
      letter-spacing: 0.5px;
      font-size: 14px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: left;
      padding-top: 30px;
      line-height: 30px;
      background-color: rgba(255, 255, 255, 0.8); /* 白半透明 */
    }


    


.Bumon_02 {
  position: relative;
  max-width: 950px;
  width: 100%;
  margin: 350px auto 0;
  min-width: 768px;
  height: 55vh;
  display: flex;
  padding-bottom: 320px;
}

.Bumon_02_Number {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    color: rgb(12,134,182);
    font-size: 130px;
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: 100;
    font-style: italic;  /* テキストを斜体にする */
}


  .Bumon_02txt {
    top: 280px;
    left: -70px;
    color: rgb(12,134,182);
    padding: 200px 20px 20px 20px;
    width: auto;
    height: 190px;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
  }
  
  .Bumon_02txt h3 {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 4.5px;
    font-size: 25px;
    position: relative;
    text-align: left;
    white-space: nowrap;
  }



  .Bumon_02txt p {
    font-family: "Noto Sans JP", Sans;
    font-weight: normal;
    color: rgb(12,134,182);
    letter-spacing: 0.5px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 30px;
    line-height: 30px;
  }
  .Bumon_02_txtBox {
    width: 420px;
    position: absolute;
    top: 350px;
    left: 10px;
}

    .custom-dotted-line {
        width: 45%;
        height: 4px;
        background-image: radial-gradient(circle, rgb(12,134,182) 2px, transparent 2px);
        background-size: 12px 4px;
        background-repeat: repeat-x;
        margin: 35px auto;
    }

    .Yunyuu_Movie h2 {
        position: absolute;
        TOP: 94%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgb(12,134,182);
        padding: 0px 30px 2px 40px;
        font-family: "Noto Sans JP", Sans;
        font-weight: 200;
        color: rgb(255, 255, 255);
        letter-spacing: 18.5px;
        font-size: 30px;
    }



    .ACHtxt_RV {
      left: 25%;
      text-align: center;
    }

    .OWOS_title {
      padding: 420px 0px 70px 0px;
  }

  .OWOS_txt01 {
    font-family: "Noto Sans JP", Sans;
    font-weight: 200;
    color: rgb(12, 134, 182);
    letter-spacing: 0.5px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding-left: 45px; */
    line-height: 30px;
}

  .OWOS_txt {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    color: rgb(12, 134, 182);
    letter-spacing: 0.5px;
    font-size: 57px;
    text-align: center;
}

  .OWOS_Contents_01 {
    width: 830px;
  }

    /* .YW_Yokosen {
      width: 100%;
      height: 10px;
      background-color: rgb(255, 251, 0);
      padding: 0px 0;
      margin-top: 0px;
  } */

}



/* 768px以下に適用されるCSS（スマホ用）--------基本は @media (max-width: 768px) でスマホ全般対応---------------------------------------------- */
/* ====== レスポンシブ対応（768px以下）====== */
@media screen and (max-width: 768px) {

    .logo img {
      top: 10px;
      left: 10px;
      width: 70px;
      height: auto;
      padding: 10px 10px;
      z-index: 1001;
  }

  .logo {
    top: 0px;
    left: 0px;
  }

  .menu-icon {
    display: flex;
  }
  .header-nav {
    display: none;
  }

    #header {
      height: 40px;
      width: 100%;
      padding: 0;
      display: flex;
      justify-content: flex-end; /* 右端に寄せる */
      background-color: transparent;
  }

  #ACS_Haneda_toha { 
    scroll-margin-top: 0px;
  }

  .overlay {
    left: auto;
  }


  .mi_Box {
    width: 50px;
    height: 20px;
    background-color: rgba(12, 134, 182, 0.6);
    padding: 15px 0px 15px 20px;
  }

  #header.hide {
    transform: translateY(0%);
}

#header.show {
  transform: translateY(0);
}


.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 23px;
  cursor: pointer;
  padding: 0 0px;
  margin-right: 0px;
}


    /* ナビゲーション非表示にしてハンバーガー用メニューに切り替え */
    header nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
      display: none;
      flex-direction: column;
      width: 150px;
      z-index: 999;
      /* padding 0px; */
      height: 0px;
  }
  
    body.menu-open header nav ul {
      display: flex;
    }
  
    header nav ul li {
      margin: 10px 0;
      text-align: center;
    }
  


    header .logo img {
      width: 60px;
      height: auto;
      padding: 10px 10px;
      margin-top: 7px;
  }


  
  .ACHtxt_TM {
    position: absolute;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
  }
  
  /* .ACHtxt_TM 内のテキストにデザインを移動 */
  .ACHtxt_TM .fadein {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: -3px;
    color: rgb(12, 134, 182);
    font-size: 70px;
    line-height: 70px;
    white-space: nowrap;
    text-align: center;
  
    opacity: 0;
    transform: translateY(30px); /* ← X方向なし！ */
    transition: all 0.6s ease;
  }
  
  .ACHtxt_TM .fadein.show {
    opacity: 1;
    transform: translateY(0); /* Y方向アニメーションだけ */
  }
  
  .ACS_Haneda_toha_ {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px;
    z-index: 20;
    width: 380px;
    padding-left: 0px;
}


.ACS_Haneda_toha_contents {
  display: block;
  padding: 0px;
  /* margin: 0 auto; */
  width: auto;
  position: relative;
  height: 420px;
  margin-top: 180px;
}

.carousel-container {
  aspect-ratio: 2.45 / 1;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  margin-top: 600px;
  margin: 60px auto 0px ;
}

.vehicle-section h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 39px;
  color: rgb(12, 134, 182);
  padding: 30px 0px 0px 0px;
  letter-spacing: 0px;
  text-align: center;
}

.VS_txt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  font-size: 14px;
  color: rgb(12, 134, 182);
  display: block;
  padding: 10px 0px 0px 0;
  text-align: center;
}

.vehicle-scroll  {
    transform: scale(0.7);
    transform-origin: left center;
    width: 150%;
}
.vehicle-scroll {
  width: 100%;
  height: 88px;
  overflow: unset;
  position: relative;
  padding-top: 30px;
}

.numbered-heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.numbered-heading::before {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: rgb(12, 134, 182);
  font-size: 30px;
  padding-top: 5px;
}

.heading-1::before { content: "1."; }
.heading-2::before { content: "2."; }

  
    /* .Bumon_01, .Bumon_02 スマホ表示調整 */
    .Bumon_01, .Bumon_02 {
      min-width: auto;
      height: auto;
      margin: 20px auto 0;
    }
  
    .Bumon_02 {
      margin: 90px auto 0;
    }

    .Bumon_01 img, .Bumon_02 img {
      margin: 0;
    }
  
    .Bumon_01txt, .Bumon_02txt {
      position: static;
      width: 100%;
      height: auto;
      margin: 0px auto;
      padding: 0px;
    }
  
    .Bumon_01 img {
      width: 330px;
      height: auto;
      object-fit: contain;
      display: block;
      /* margin-left: 25px; */
      /* margin-top: 350px; */
      position: absolute;
      top: 530px;
      left: 0;
      right: 0;
      margin: 0 auto;
  }

    .Bumon_02 img  {
      width: 330px;
      height: auto;
      object-fit: contain;
      display: block;
      /* margin-left: 25px; */
      /* margin-top: 350px; */
      position: absolute;
      top: 450px;
      left: 0;
      right: 0;
      margin: 0 auto;
  }

  
    /* セクションタイトルなど文字サイズ調整 */
    .Bumon_copy {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 200;
      color: rgb(12, 134, 182);
      letter-spacing: 4.5px;
      font-size: 85px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin: 40px auto 0;
      padding: 0;
      line-height: 95px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      white-space: nowrap;
      position: unset;
      z-index: 10;
      width: 150px;
    }
    
  
    /* スマホ専用見出しを表示 */
    .Bumon_copy_sp {
      display: block;
      font-size: 28px;
      text-align: center;
      color: rgb(12,134,182);
      margin: 30px 0 0 0;
      line-height: 33px;
    }
  
    /* デスクトップ用非表示 */
  
    /* .centered-image {
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-top: 10px;
      width: 90%;
  } */

  .GN_txt {
    position: absolute;
    top: 120%;
    left: 50%;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    color: rgb(12, 134, 182);
    letter-spacing: 0.5px;
    font-size: 35px;
    transform: translateX(-50%);
    white-space: nowrap;
  }






    /* .OWOS_Contents の横並びを縦に */
    .OWOS_Contents_01, .OWOS_Contents_02,.OWOS_Contents_03 {
      flex-direction: column;
      align-items: center;
    }
  
    .OWOS_Contents_03 {
      margin-top: 0px;
      padding-bottom: 0px;
    }

    .OWOS_Contents_01 img, .OWOS_Contents_02_SP img, .OWOS_Contents_03 img {
      width: 35%;
      height: auto;
    }
  
    .OWOS_Contents_01_txt, .OWOS_Contents_02_txt, .OWOS_Contents_03_txt {
      width: 90%;
      margin-top: 0px;
      padding: 15px 20px 20px;
    }

    .OWOS_Contents_01 {
      display: flex;
      width: 500px;
      gap: 20px;
      margin: 0px auto 0;
    }

    .photo-block {
      /* flex: 1; */
      text-align: center;
      position: relative;
      margin: 0px auto 0px;
  }

    .pb_photo {
      position: relative;
      height: 250px;
    }

  
    /* スライダー高さ調整 */
    .carousel-container {
      height: 20vh;
    }
  
    .carousel-images img {
      height: 100%;
    }
  
    /* タイトル画像小さく */
    .TitleACS {
      height: auto;
      padding: 5px 0 0 0;
    }

    .TitleACS img {
      width: 60%;
      position: relative;
      TOP: -33%;
      transform: translate(40%, 0%);
  }
  
  .indicators {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
}


#ACS_Haneda_toha h1 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-top: 10px;
  color: rgb(12,134,182);
  font-size: 20px;
  text-align: center;
}

#ACS_Haneda_toha .ACHtxt {
  font-family: "Noto Sans JP", Sans;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-top: -10px;
  color: rgb(12, 134, 182);
  font-size: 14px;
  text-align: left;
  line-height: 21px;
  padding: 20px 40px;
}

.Yusyutu_Movie {
  max-width: 1300px;
  min-width: 0px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 0px;
}
.Yunyuu_Movie {
  max-width: 1300px;
  min-width: 0px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-top: 730px;
}




.Yusyutu_Movie h2 , .Yunyuu_Movie h2 {
  position: absolute;
  TOP: 94%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(12, 134, 182);
  padding: 2px 20px 4px 30px;
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  color: rgb(255, 255, 255);
  letter-spacing: 10.5px;
  font-size: 19px;
  white-space: nowrap;
}

.Bumon_01_PH {
  display: none;
}

.Bumon_01_PH_SP {
  display: block;
}


.Bumon_01_Number ,
.Bumon_02_Number {
display: none;
}


.Bumon_01txt h3 ,.Bumon_02txt h3 {
  font-family: "Noto Sans JP", Sans;
  font-weight: normal;
  color: rgb(12, 134, 182);
  letter-spacing: 1.5px;
  font-size: 25px;
  position: unset;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 710px;
  padding-left: 0;
  display: inline-block;
}


.Bumon_01txt p ,.Bumon_02txt p {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  color: rgb(12, 134, 182);
  letter-spacing: 0.3px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-top: 20px;
  line-height: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 85%;
  margin: 0 auto;
}
.Bumon_01_txtBox,
.Bumon_02_txtBox {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-dotted-line {
  width: 70%;
  height: 4px;
  background-image: radial-gradient(circle, rgb(12,134,182) 1px, transparent 2px);
  background-size: 11px 4px;
  background-repeat: repeat-x;
  margin: 10px auto 0;
}

#GyoumuNaiyou {
  height: 3850px; /* デフォルト（狭い画面用） */
}

@media (max-width: 600px) {
  #GyoumuNaiyou {
    height: 3750px;
  }
}

@media (max-width: 500px) {
  #GyoumuNaiyou {
    height: 3650px;
  }
}

@media (max-width: 450px) {
  #GyoumuNaiyou {
    height: 3600px;
  }
}

@media (max-width: 400px) {
  #GyoumuNaiyou {
    height: 3550px;
  }
}

.OWOS_title {
  display: block;
  padding: 220px 0px 70px 0px;
}

.OWOS_txt {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: rgb(12, 134, 182);
  letter-spacing: 2.5px;
  font-size: 25px;
  text-align: center;
}

.OWOS_txt01 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  color: rgb(12, 134, 182);
  letter-spacing: 0.5px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 0;
  line-height: 25px;
  padding-top: 3pt;
}

/* 
.OWOS_title_SP {
  display: block;
  width: 300px;
  margin: 10px auto 0;
}
.OWOS_title_SP img {
  width: 300px;
} */


#OWOS_Contents {
  margin-top: 0px;
}

.OWOS_Contents_txt_03 {
  padding-top: 30px;
}

.OWOS_Contents_02 {
  display: none;
}
.OWOS_Contents_02_SP {
  display: inline-grid;
}

.OWOS_Contents_txt_03 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-top: 25px;
  line-height: 20px;
  width: 220px;
  margin: 0 auto;
}

.caption {
  text-align: left;
  margin-top: 10px;
  position: absolute;
  TOP: 90px;
  left: 160px;
}

.caption p {
  font-size: 12px;
}

.caption h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 17px;
  color: rgb(12, 134, 182);
  padding-top: 3px;
  white-space: nowrap;
}

.overlay_RV ,
.overlay_RV02 ,
.overlay_RV03 {
  display: none;
}

.caption .OWOS_capcopy {
  display: block;
  font-family: "Noto Sans JP", Sans;
  font-weight: 500;
  font-size: 15px;
  color: rgb(12,134,182);
  padding-top: 13px;
  letter-spacing: 2px;
}

.popup-svg-trigger {
  display: block;
  position: absolute;
  bottom: 140px;
  right: 200px;
  z-index: 100;
}

.popup-svg-trigger img {
  width: 100px;              /* サイズ調整 */
  height: auto;
  cursor: pointer;
  pointer-events: auto;
}

.popup-text {
  padding: 0px 20px 0 20px;
}

.popup-text p {
  font-size: 14px;
  line-height: 1.8;
}

.popup-text h2 ,
.popup-text h3  {
  font-size: 20px;
}

.popup-content {
  padding: 20px;
  margin: 30px auto;
}

.popup-layout {
  flex-direction: column-reverse;
  gap: 20px;
}

.popup-photo {
  text-align: center;
}

.popup-photo img {
  width: 300px;
  margin: 0 auto;
}

.popup-vertical-text {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  font-size: 26px;
  color: rgb(12, 134, 182);
  writing-mode: unset;
  margin: 50px 0 -40px 20px;
  letter-spacing: 1px;
  line-height: 40px;
}

.popup-close {
  font-size: 1.8rem;
  top: 10px;
  right: 10px;
  z-index: 200;
}

.popup_caption {
    width: 300px;
    margin: 0 auto;
}


.ACHtxt_RV {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: normal;
  letter-spacing: -3px;
  color: rgb(12, 134, 182);
  font-size: 70px;
  line-height: 70px;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: unset;
}

.SaiyouJyouhou_01{
    font-family: "Noto Sans JP", Sans;
    font-weight: bold;
    letter-spacing: 2.5px;
    margin-top: 40px;
    color: rgb(12, 134, 182);
    font-size: 30px;
    }

.SaiyouJyouhou_title {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 20.5px;
  display: inline-block;
  padding: 0px 0px 0px 20px;
  margin-top: 40px;
  border: 1px solid rgb(12,134,182);
  color: rgb(12,134,182);
  font-size: 20px;
  background-color: transparent;
  margin: 25px 100px 0;
  white-space: nowrap;
}

.SaiyouJyouhou_03 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 1.8px;
  margin-top: 0px;
  color: rgb(12,134,182);
  font-size: 16px;
  line-height: 22px;
  padding: 20px 25px;
  text-align: center;
}

.SaiyouJyouhou_01_SP {
  font-family: "Noto Sans JP", Sans;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-top: 20px;
  color: rgb(12,134,182);
  font-size: 29px;
  display: inline-block;
  text-align: center;
}
.SaiyouJyouhou_02 {
  font-family: "Noto Sans JP", Sans;
  font-weight: 500;
  letter-spacing: 2.5px;
  margin-top: 20px;
  color: rgb(12,134,182);
  font-size: 19px;
}

.SaiyouJyouhou_MV video {
  width: 100%;
}

.sound-toggle {
  bottom: 3vh;
  right: 5vw;
}


.recruit-button {
  margin-top: 10px;
  margin-bottom: 15px;
}

.Group_title {
  font-family: "Noto Sans JP", Sans;
  font-weight: 200;
  letter-spacing: 3.5px;
  display: inline-block;
  padding: 0px 20px 0px 20px;
  margin-top: 40px;
  border: 1px solid rgb(12,134,182);
  color: rgb(12,134,182);
  font-size: 20px;
  background-color: transparent;
  margin: 25px 100px 10px;
  white-space: nowrap;
}

.company-profile th {
  font-family: "Noto Sans JP", Sans;
  width: 100px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 3px;
  font-size: 11pt;
}

.company-profile td {
  font-family: "Noto Sans JP", Sans;
  font-weight: normal;
  text-align: left;
  white-space: wrap;
  letter-spacing: 1px;
  font-size: 10pt;
}

.copyright {
  font-family: "Noto Sans JP", Sans;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 7pt;
  padding: 40px 0;
}

}


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

  .TOP_Movie_SP {
    display: grid;
    place-items: center;  /* 中央に配置 */
    width: 100%;
    aspect-ratio: 50 / 39; 
    position: relative;
  }

  .aircargo-video  {
    width: 100%;
    aspect-ratio: 50 / 39; 
    object-fit: cover;
    display: block;
  }

  .SaiyouJyouhou_03 {
    text-align: left;
}

}