#main>.topicpath,
#main>#category-nav,
#main article > .container:first-child {
  display: none;
}
#main article {
  padding-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main article {
    padding-top: 52px;
  }
}


/* ===========================================================
   AIRDO運航乗務員採用 - ヘッダー コンポーネント
   =========================================================== */

:root {
  --color-blue: #55c8ef;
  --color-yellow: #f4ea3d;
  --color-magenta: #d31872;
  --color-text: #1a1a1a;
  --color-border: #e6e6e6;
  --header-height: 100px;
  --header-height-mobile: 52px;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- header shell ---------- */

.site-header {
  border-bottom: 1px solid #ccc;
  position: fixed;
  width: 100%;
  background: #fff;
  left: 0;
  top: 104px;
  z-index: 2;
}

.site-header.n_fixed {
  position: relative;
}
.site-header.m_fixed {
  top: 0;
}

.header-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1080px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- desktop nav ---------- */

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
  margin-right: auto;
  white-space: nowrap;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: opacity 0.15s ease;
}

.header-nav a:hover {
  opacity: 0.6;
}

.header-social {
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.icon-btn {
  width: 24px;
  height: 24px;
}

/* ---------- CTA blocks (募集要項 / ENTRY) ---------- */

.header-actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.cta-block.is-blue {
  background: var(--color-blue);
  color: #1a1a1a;
}

.cta-block.is-yellow {
  background: var(--color-yellow);
  color: var(--color-text);
}

/* ---------- hamburger / menu toggle (tablet & mobile) ---------- */

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 84px;
  padding: 0 16px;
  background: #fff;
  border: none;
  border-left: 1px solid var(--color-border);
  cursor: pointer;
  font-family: inherit;
}

.menu-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 16px;
  height: 16px;
}

.grid-icon span {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--color-text);
}

.close-icon {
  position: absolute;
  inset: 0;
  display: none;
}

.close-icon svg {
  width: 18px;
  height: 18px;
}

.menu-toggle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-header.is-open .grid-icon {
  display: none;
}

.site-header.is-open .close-icon {
  display: block;
}

/* ---------- mobile dropdown panel ---------- */

.mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 200;
  overflow: hidden;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li + li {
  border-top: 1px solid var(--color-border);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.mobile-nav a .chevron {
  color: #999;
  font-size: 16px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.mobile-cta.is-blue {
  background: var(--color-blue);
  color: #1a1a1a;
}

.mobile-cta.is-yellow {
  background: var(--color-yellow);
  color: var(--color-text);
}

.mobile-cta.is-magenta {
  background: var(--color-magenta);
  color: #fff;
  gap: 8px;
}

.mobile-cta svg {
  flex-shrink: 0;
}

/* ===========================================================
   Breakpoints
   - 961px以上   : デスクトップ（ナビ + Instagramアイコン表示）
   - 960px以下   : タブレット / モバイル（ハンバーガーメニュー表示）
   =========================================================== */

@media screen and (max-width: 767px) {
  .header-nav,
  .header-social {
    display: none;
  }

  .menu-toggle {
    display: flex;
    padding: 0;
    min-width: 52px;
  }

  .header-logo {
    font-size: 17px;
    padding-left: 16px;
    width: 100%;
  }

  .cta-block {
    min-width: 52px;
    padding: 0 12px;
    font-size: 10px;
  }
  .header-bar {
    justify-content: normal;
    height: var(--header-height-mobile);
  }
  .site-header {
    top: 40px;
  }

  .overlay {
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: opacity 0.12s ease;
    transition: opacity 0.12s ease;
    opacity: 0;
    pointer-events: none;
  }
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

@media (max-width: 480px) {

  .header-logo {
    font-size: 14px;
  }

  .cta-block {
    padding: 0 8px;
  }
}

#main {
  position: relative;
}

.tab {
  margin-bottom: 60px;
  margin-top: -50px;
}
.tab .tab-nav li a,
.tab .tab-nav li span {
  font-size: 14px;
  padding: 5px 12px;
}
.tab .tab-nav li span {
  position: relative;
}
.tab .tab-nav li a::after,
.tab .tab-nav li .current::after,
.tab .tab-nav li span::after {
  top: auto;
  bottom: 0;
}
.tab .tab-nav li span::before {
  background-color: #777;
  content: "";
  height: calc(100% - 3px);
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  opacity: .7;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .tab {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .tab .tab-nav {
    flex-wrap: wrap;
  }
  .tab .tab-nav li span::before {
    height: 100%;
    top: 0;
  }
}

.h-2color {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 8px;
}
/* 自社養成制度 */
#main .lakselop #mainvisual {
  background: url(/corporate/recruit/pilot/lakselop/images/main.webp) no-repeat center center;
  background-size: cover;
}
/* 経験者採用 */
#main .career #mainvisual {
  background: url(/corporate/recruit/pilot/career/images/main.webp) no-repeat center center;
  background-size: cover;
}
/* 訓練生 */
#main .license #mainvisual {
  background: url(/corporate/recruit/pilot/license/images/main.webp) no-repeat center center;
  background-size: cover;
}
#main #mainvisual {
  height: 0;
  padding-bottom: 35.725%;
  width: 100%;
}

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

  /* 自社養成制度 */
  #main .lakselop #mainvisual {
    background: url(/corporate/recruit/pilot/lakselop/images/main-sp.webp) no-repeat center top;
    background-size: contain;
  }
  /* 経験者採用 */
  #main .career #mainvisual {
    background: url(/corporate/recruit/pilot/career/images/main-sp.webp) no-repeat center top;
    background-size: contain;
  }
  /* 訓練生 */
  #main .license #mainvisual {
    background: url(/corporate/recruit/pilot/license/images/main-sp.webp) no-repeat center top;
    background-size: contain;
  }
  #main #mainvisual {
    width: auto;
    height: calc(100vw * 10.503 / 18.65);
    margin: 0 -16px;
    padding-bottom: 0;
  }


  /* キャリアパス */
  .license.career h2 + figure img {
    width: 53px;
  }
}

.pilot-footer {
  background-color: #F7F7F7;
  padding: 60px 0;
}
.pilot-footer .box {
  background-color: #fff;
}
.pilot-footer .row > div:first-child {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .pilot-footer {
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 0;
  }
  .pilot-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pilot-footer .box {
    padding: 19px;
  }
  .pilot-footer .row > div:first-child {
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
  .pilot-footer h3 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .pilot-footer p {
    font-size: 14px;
    margin-top: 16px !important;
  }
}

/* ===========================================================
   TOP
   =========================================================== */
.pilot .main {
  padding-left: 12.5%;
  position: relative;
}
.pilot .main::after {
  background: url(/corporate/recruit/pilot/images/scroll.webp) center center no-repeat;
  background-size: cover;
  content: "";
  height: 139px;
  position: absolute;
  left: 5.7%;
  top: 50%;
  transform: translateY(-99%);
  width: 29px;
  z-index: -1;
}
.pilot .main-conf {
  background-image: linear-gradient(90deg, #54c1f7, #32afed);
  padding-bottom: 8.5%;
  padding-top: 38.9%;
  margin-bottom: 140px;
  margin-top: -29.2%;
  font-size: 62.5%;
}
.pilot .main-conf .inr {
  padding-left: 12.5%;
}
.pilot .main-conf .inr .main-txt {
  color: #fff;
  font-weight: 700;
}
.pilot .main-conf .inr .main-txt h2 {
  font-size: calc(1.43164rem + 0.625vw);
  font-weight: 700;
  line-height: 250%;
  margin-bottom: 15px;
}
.pilot .main-conf .inr .main-txt h2 span {
  background: url(/corporate/recruit/pilot/images/wavy.webp) left bottom repeat-x;
  background-size: 100% auto;
  padding-bottom: 10px;
}
.pilot .main-conf .inr .main-txt p {
  font-size: clamp(0.8rem, calc(0.43164rem + 0.625vw),1.9rem);
  line-height: 180%;
}
.pilot .category-box > p {
  color: #0976D5;
  font-size: 20px;
  font-weight: bold;
}
.pilot .category-box > h3 {
  font-size: 32px;
  font-weight: 700;
}
.pilot .category-box > h3 span {
  font-size: 20px;
}
.pilot .category-box .btn {
  min-width: 260px;
}
.pilot .category-box span.btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pilot .main {
    padding-left: 9%;
    margin-left: -16px;
    margin-right: -16px;
  }
  .pilot .main::after {
    height: 30%;
    position: absolute;
    left: 2%;
    transform: translateY(-40%);
    width: 4%;
  }
  .pilot .main-conf {
    margin-bottom: 40px;
    margin-left: -16px;
    margin-right: -16px;
    padding-bottom: 0;
  }
  .pilot .main-conf .inr {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pilot .main-conf .inr .main-txt h2 {
    font-size: 20px;
    margin-top: 0;
  }
  .pilot .main-conf .inr .main-txt p {
    font-size: 16px;
  }
  .pilot .main-conf .inr .col-55 {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .pilot .main-conf .inr figure {
    margin-left: -16px;
    margin-right: -16px;
  }
  .pilot .category-box > p {
    font-size: 14px;
  }
  .pilot .category-box > h3 {
    font-size: 20px;
  }
  .pilot .category-box > h3 span {
    font-size: 14px;
  }
  .pilot .category-box > figure {
    margin-left: -16px;
    margin-right: -16px;
  }
  .pilot .category-box .btn {
    min-width: 100%;
  }
}

/* ===========================================================
   募集要項
   =========================================================== */
@media screen and (max-width: 767px) {
  .career.requirement figure {
    margin: 0 auto;
    width: 93px;
  }
}

/* ===========================================================
   選考プロセス
   =========================================================== */
.lakselop.requirement .toggle-handle {
  padding: 21px 40px 11px 0;
}
.lakselop.requirement .dl-horizontal-xs dt {
  width: 3em;
}
.lakselop.requirement .dl-horizontal-xs dt img {
  vertical-align: -16px;
}
.lakselop.requirement .dl-horizontal-xs dd {
  width: calc(100% - 3em);
}
.lakselop.requirement .toggle-handle .dl-horizontal-xs dd {
  font-size: 20px;
  font-weight: bold;
}
.lakselop.requirement .toggle-content .dl-horizontal-xs dd {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lakselop.requirement .toggle {
    margin: 0;
  }
  .lakselop.requirement .toggle-handle .dl-horizontal-xs dd {
    font-size: 16px;
  }
  .lakselop.requirement .toggle-content {
    padding: 0;
  }
  .lakselop.requirement .toggle-content .dl-horizontal-xs dd {
    font-size: 14px;
  }
}