
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
}

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

.lp-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: #fff;
  z-index: 1000;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.lp-header__left img {
  width: 522px;
  max-width: 522px;
}

.lp-header__right img {
  display: block;
  margin-right:40px;

  width: auto;
}



/* SP */
@media (max-width: 1050px) {
  
  .lp-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: #fff;
  z-index: 1000;
}

  
  .lp-header__left img {
    margin-top: 5px;
  width: 250px;
    margin-left: -1px;
}

.lp-header__right img {
  display: block;
  margin-right:40px;
  width: auto;
}

}



/* SP hamburger button */
.sp-menu-btn{ display:none; }

@media (max-width: 1050px){
  .sp-menu-btn{
    display:block;
    position: fixed;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 28px;
    z-index: 1300;

    background:rgba(255,255,255,0.8);
    border:none;
    border-radius:3px;

    padding:6px;               /* ★これ */
    box-sizing:border-box;     /* ★これも重要 */
  }

@media (max-width: 1050px){

  .sp-menu-btn span{
    position:absolute;
    left: 6px;          /* ★ padding と同じ値 */
    right: 6px;         /* ★ これが重要 */
    width: auto;        /* ★ width:100% をやめる */
    height: 2px;
    background:#000;
    transition: transform .28s ease, top .28s ease, opacity .2s ease, background-color .2s ease;
  }

  .sp-menu-btn span:nth-child(1){ top: 6px; }
  .sp-menu-btn span:nth-child(2){ top: 13px; }
  .sp-menu-btn span:nth-child(3){ top: 20px; }

}
  /* OPEN状態：×に変形（中央で交差） */
  .sp-menu-btn.is-open span{
    background:#000; /* 黒背景上で白に */
  }
  .sp-menu-btn.is-open span:nth-child(1){
    top: 13px;
    transform: rotate(45deg);
  }
  .sp-menu-btn.is-open span:nth-child(2){
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-child(3){
    top: 13px;
    transform: rotate(-45deg);
  }
}


.sp-menu{
  position: fixed;
  inset: 0;
  background:#000;
  z-index: 1200;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity .3s ease,
    visibility 0s linear .3s;
}

.sp-menu.is-open{
  opacity: 1;
  visibility: visible;
  transition:
    opacity .3s ease,
    visibility 0s linear 0s;
}

.sp-menu__inner{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.sp-menu__logo{ width:160px; margin-bottom:40px; }

.sp-menu__list li{ margin:24px 0; }

.sp-menu__list a{
  color:#fff;
  font-size:22px;
  font-weight: 600;
  letter-spacing:.08em;
  text-decoration:none;
}
.sp-menu__list span{
  display:block;
  font-size:13px;
  opacity:.7;
  margin-top:6px;
}

.lp_detail__inner {
  width: 75%;
  max-width: 1200px;
  margin: 20px auto;
}

.detail {
  width: 100%;
  margin: 0 auto;
  padding-top:20px;
  padding-bottom:150px;
  background-color: #fff;
}

@media (max-width: 1050px){
  .detail {
  width: 100%;
  margin: 0 auto;
  padding-bottom:100px;
}
.lp_detail__inner {
  width: 100%;
  margin: 20px auto;
}
  .lp-header__inner{
    padding-right: 64px; 
  }

  .sp-menu-btn{
    top: 5px;
    right: 16px;
  }
}


.lp_detail__offerdetail {
  padding-top:30px;
  padding-bottom:30px;
  border-top:2px solid #000;
  border-bottom:2px solid #000;
  
}

.detail_maincopy {
  width: 90%;
  margin: 0 auto;
    margin-bottom:30px;

}



.btn-entry-wrap{
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.btn-entry{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 82px 15px 82px;
  background: #00a9ff;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
   display: flex;
  align-items: center;
  justify-content: center; /* 中身の文字も中央 */
  width: 30%;
  margin: 0 auto;
  transition:
    background-color .28s ease,
    color .28s ease,
    filter .28s ease;
}


@media (hover:hover){

  .btn-entry:hover{
    background: #1f86ea;
    color: #ffffff;      
    filter: brightness(1.02);
  }
}

/* SP tap */
.btn-entry:active{
  background: #1f86ea;
  color: #ffffff;
  filter: brightness(1.02);
}

@media (max-width: 1050px){
    .btn-entry{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 18px 10px 22px 10px;

  background: #3399ff;
  color: #fff;

  font-size: 40px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  width: 80%;
    font-size: 25px; 
  transition: background-color .28s ease, color .28s ease;
}
  .btn-entry-wrap{
  display: flex;
  justify-content: center;
  margin-top: 0;
}
  .detail_maincopy {
  margin-bottom:30px;
    width: 90%;
    margin: 0 auto;
}
  .lp_detail__offerdetail {
  padding-top:10px;
  padding-bottom:10px;
  border-top:none;
  border-bottom:none;
}
}


.btn-entry::before{
  content: '';
  width: 34px;
  height: 34px;

  background: url('../../assets/img/main/arrow.svg') no-repeat center / contain;

  display: inline-block;
  flex-shrink: 0;
  margin-top: 6px;
}

.btn-entry--right::before{
  content: '';
  width: 34px;
  height: 34px;

  background: url('../../assets/img/main/arrow.svg') no-repeat center / contain;

  display: inline-block;
  flex-shrink: 0;

  margin-top: 6px;

  transform: rotate(-90deg); /* ★ 下向き → 右向き */
}

/* hover / tap は色だけ */
@media (hover:hover){
  .btn-entry:hover{
    background: #1f86ea;
  }
}
.btn-entry:active{
  background: #1f86ea;
}


  
  
  
  /* PCでは非表示 */
.sp-role-accordion{ display:none; }

@media (max-width: 1050px){
  .sp-role-accordion{
    display:block;
    background:#fff;
    border-top: 2px solid #000;
    border-bottom: 1px solid #000;
  }

  .sp-role-accordion__title{
    margin:0;
    padding:0% 16px 2% 16px;
    color:#fff;
    font-size:7vw;
    font-weight:800;
    text-align:center;
    border-bottom: 1px solid #000;
    background-color: #000;
  }

  .sp-role-accordion__group{
    border-bottom: 1px solid #000;
  }

  .sp-role-accordion__btn{
    width:100%;
    background:transparent;
    border:none;
    padding:18px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    color:#000;
  }


  .sp-role-accordion__icon{
    width:22px;
    height:22px;
    position:relative;
    flex: 0 0 auto;
  }
  .sp-role-accordion__icon::before,
  .sp-role-accordion__icon::after{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    height:2px;
    background:#000;
    transform: translateY(-50%);
    transition: transform .22s ease, opacity .22s ease;
  }

  .sp-role-accordion__icon::after{
    transform: translateY(-50%) rotate(90deg);
  }

  .sp-role-accordion__btn[aria-expanded="true"] .sp-role-accordion__icon::after{
    opacity:0;
  }

  .sp-role-accordion__panel{
   overflow:hidden;
  max-height:0;
  opacity:0;

  transition:
    max-height .45s cubic-bezier(.2,.6,.2,1),
    opacity   .25s ease;
    padding:0 16px;
  }
  .sp-role-accordion__panel.is-open{
    opacity:1;
    padding: 10px 30px 18px;
  }

  .sp-role-accordion__list{
    margin:0;
    padding:0;
    list-style:none;
  }
  .sp-role-accordion__list li{
    margin:10px 0;
  }
  .sp-role-accordion__list a{
    color:#1386ff;
    text-decoration:none;
    font-weight:700;
  }
}

  .voice {
  width: 100%;
   margin: 0 auto;
    padding:130px 0 80px 0;
      background-image:
    linear-gradient(117deg,rgba(0, 129, 224, 1) 31%, rgba(237, 30, 121, 0.7) 59%),url(../img/main/voice_backimg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.lp_voice__inner {
   width: 75%;
	max-width: 1200px;
  margin: 20px auto;
}
  
@media (max-width: 1050px){
.voice {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0 60px 0;
 margin-bottom: 0;

  background-image:
    linear-gradient(117deg,rgba(0, 129, 224, 1) 31%, rgba(237, 30, 121, 0.7) 59%),
    url(../img/main/voice_backimg.webp);

  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
  .lp_voice__inner {
   width: 100%;
  margin: 0 auto;
}
  }



.tools{
  width:100%;
}

.tools__inner{
  margin: 80px auto;
  width: 65%;
}

.tools__box{
  border: 1px solid rgba(255,255,255,.9);
  padding: 54px 60px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

.tools__head{
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-left: 18px;
}

.tools__head::before{
  content:"";
  position:absolute;
  left:0;
  top:.15em;
  width: 6px;
  height: 1.1em;
  background: #f3ff2f; /* 黄バー */
}

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

.tools__list li{
  color:#fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.85;
  margin: 0 0 10px;
}

/* ===== SP ===== */
@media (max-width: 767px){
  .tools__inner{
    margin: 0 auto;
    padding: 50px 16px;
    width: 95%;
  }

  .tools__box{
    grid-template-columns: 1fr;
    row-gap: 26px;
    padding: 22px 18px;
  }

  .tools__head{
    font-size: 22px;
    margin-bottom: 12px;
    padding-left: 16px;
  }

  .tools__head::before{
    width: 5px;
  }

  .tools__list li{
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 8px;
  }
}



.entry_sp {
  margin-top: 0;
  z-index: 500;
}

/* ===== SPカテゴリ索引 ===== */
.sp-category-nav{
  display:none;
  padding:16px;
}
.sp-cat-btn{
  width:100%;
  text-align:left;
  font-weight:800;
  padding:12px 0;
}
.sp-cat-list{
  margin:0 0 12px;
}
.sp-cat-list a{
  display:block;
  padding:6px 0;
}

/* ===== 実体一覧 ===== */
.recruitinfolist{
  width: 75%;
	max-width: 1200px;
  margin: 100px auto;
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  list-style:none;
  padding:0;
}

.job-card{
  flex:0 0 calc((100% - 48px) / 3);
  border:1px solid #000;
  padding:20px 20px 40px 20px;
  display:flex;
  flex-direction:column;
}

.job-cat{
  font-size:12px;
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
  background: #00a9ff;
  padding:2px 10px 5px 10px;
  width: 100px
}

.job-title{
  font-size:20px;
  margin:0 0 8px;
}

.job-desc{
  font-size:14px;
  font-weight: 500;
  line-height:1.6;
  flex:1;
}

.job-entry{
  margin-top:12px;
  text-align:center;
  border:1px solid #000;
  font-weight: 600;
  padding:10px 10px;
  width: 70%;
  margin: 20px auto;
  margin-bottom: 0;
  text-decoration:none;
}

/* ===== SP ===== */
@media (max-width:1050px){
  .job-entry{
  margin-top:12px;
  text-align:center;
  border:1px solid #000;
  font-weight: 600;
  padding:10px 10px;
  width: 70%;
  margin: 20px auto;
  margin-bottom: 0;
  text-decoration:none;
}
  .job-title{
  font-size:25px;
  margin:0 0 8px;
}
  .job-cat{
  font-size:15px;
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
  background: #00a9ff;
  padding:2px 10px 5px 10px;
  width: 100px
}
  .job-desc{
  font-size:16px;
  font-weight: 500;
  line-height:1.6;
  flex:1;
}
  .sp-category-nav{
    display:block;
  }
  .recruitinfolist{
      width: 90%;
  margin: 30px auto;
  display:flex;
  flex-wrap:wrap;
  list-style:none;
  padding:0;
    gap:25px;
  }
  .job-card{
    flex:0 0 100%;
  }
}

.entry {
    width: 100%;
  margin: 0 auto;
  padding-bottom:150px;
  margin-bottom: 100px;
  background-color: #fff;
}
@media (max-width:1050px){
  .entry {
    width: 100%;
  margin: 0 auto;
 padding-bottom:100px;
 margin-bottom: 0;
    
}
}

.obi_entry {
  width: 100%;
  margin-bottom: 20px;
  background: #000;
}

.mt70 {
  margin-top: 70px;
}

.trigger1 {
  position: absolute;
}

.textarea_credit {
  position: relative;
  height: 45px;
  text-align: center;
  padding-top:10px;
  padding-bottom:10px;
  background-color: #fff;
}

.textarea_mainlead {
	margin-top: 70px;
	font-weight: 500;
	line-height: 1.8em;
	text-align: center;
}
@media (max-width:1050px){
  .ftimg {
  margin-top: 0px;
  width:100%;
  height: auto;
}
  .textarea_mainlead {
	margin-top: 0px;
	font-weight: 500;
	line-height: 1.8em;
	text-align: left;
    padding:30px ;
}
}

.hero {
 width: 100%;
}
.hero > img.visible-sp{
  display:block;
  width:100%;
  height:auto;
  transform: translateZ(0) scaleX(1.01);
  transform-origin: center;
}

.bgimg {
  position: fixed;
  width: 100%;
  height: 80vh;
  bottom:0;
  z-index: -1;
}

/* pictureを“枠”いっぱいに */
.bgimg picture{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* 実画像をcoverにする */
.bgimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.herocopysp img {
  width: 100%;
}

.spacearea {
  height: 400px;
}



.lp-footer{
  background:#fff;
  padding: 60px 0 58px;
}

.lp-footer__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.lp-footer__btns{
  display:flex;
  gap: 42px;
  justify-content:center;
  align-items:stretch;
  margin-bottom: 42px;
}

.lp-footer__btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width: min(520px, 44%);
  padding: 18px 50px;

  border: 1px solid rgba(0,0,0,.65);
  background:#fff;
  text-decoration:none;
}

.lp-footer__btn img{
  display:block;
  width: 100%;
  height: auto;
}

.lp-footer__brand{
  text-align:center;
}

.lp-footer__logo{
  display:block;
  width: min(260px, 60%);
  height:auto;
  margin: 0 auto 5px;}

.lp-footer__credit{
  margin:0;
  font-size: 12px;
  color: rgba(0,0,0,.6);
  letter-spacing: .04em;
  text-align: center;
}
.btn_global {
  position: absolute;
  width: 6%;
  margin-top: 18px;
  right:0; 
}

/* タブレットのみ */
@media (min-width: 768px) and (max-width: 1024px) {
.btn_global {
  position: absolute;
  width: 3%;
  margin-top: 18px;
  right:0; 
}
}

/* SP */
@media (max-width: 1050px){
  .btn_global {
  position: absolute;
    margin-top: 20vw;
  width: 22%;
  right:0;
    opacity: 0.8;
  
}

  .spacearea {
  height: 0;
}
  .lp-footer{
    padding: 40px 0 22px;
    margin-bottom: 50px;
  }

  .lp-footer__btns{
    flex-direction: column;
    margin-top: 10px;
    gap: 24px;
    margin-bottom: 40px;
  }

  .lp-footer__btn{
    width: 100%;
    padding: 16px 54px;
  }

  .lp-footer__logo{
    width: min(220px, 70%);
  }
}

.loading {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 8000;
	background-color: #fff;
}
/* =========================
   2ボタン用：wrap がある時だけ上書き
========================= */
.job-entry-wrap{
  display: flex;
  justify-content: center;
  gap: 16px;

  /* 1ボタン時の見た目（width:70% + margin:auto）に寄せる */
  width: 100%;
  margin: 20px auto 0;
}



/* =========================
   SP：縦並び
========================= */
@media (max-width: 768px){
  .job-entry-wrap{
    flex-direction: column;
    gap: 10px;
    width: 70%;
    margin: 20px auto 0;
  }

  .job-entry-wrap .job-entry{
    flex: none;
    width: 100%;
  }
}


.btn_global_sp {
  position: absolute;
  margin-top: 8px;
  right:55px;
}




.notice {
	font-size: 1rem;
	text-align: center;
}
