@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Shippori+Mincho&display=swap');

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    color: #666666;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
@media (max-width: 768px) {
    body {
        min-width: 100%;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h2 {
    font-size: 46px;
    text-align: center;
    letter-spacing: 0.1em;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
}
.section__heading{
  margin: 18px 0 18px;
}
.section__heading h2{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: bold;
  color: #1F2C5C;
  text-align: justify;
}
.section__heading h3{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: bold;
  color: #1F2C5C;
}
.section__line{
  height: 1px;
  background: #1F2C5C;
  width: 100%;
}
.button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    width: 720px;
    height: 100px;
}
@media (max-width: 768px) {
    .button {
        border-radius: calc(60/750*100vw);
        width: calc(680/750*100vw);
        height: calc(120/750*100vw);
        margin: 0 auto;
    }
    .entry .button.other{
        margin: auto;
        margin-top: 30px;
        width: 450px;
    }
}
.header {
    height: 80px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}
.header__wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.header .logo {
    width: 220px;
    display: block;
}
.header .nav1{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media (max-width: 1100px){
    .header .nav1{
        column-gap: 20px;
    }
    .header .logo{
        width: 172px;
    }
    .header {
        height: 56px;
        width: 100vw;
    }
    .header .logo {
        max-width: 130px;
        display: flex;
    }
    .entry-button a {
        width: 176px;
        font-size: 24px;
        height: 56px;
    }
    .header .entry-button a::after {
        right: 16px;
    }
    .header .nav{
        display: block;
    }
    .nav__item {
        display: none;
    }
    .entry-button {
        margin-left: auto;
    }
    .entry-button a {
        font-size: 32px;
    }
}

.header .nav {
    display: flex;
    align-items: center;
}
.header .nav__wrapper {
    display: flex;
    align-items: baseline;
    list-style: none;
    padding: 0;
    gap: 30px;
    margin: 0;
    line-height: 0;
}
.nav__item a {
    font-size: 18px;
    letter-spacing: 3px;
}
.nav__item span {
    font-family: 'Noto Sans Japanese', sans-serif;
    color: #1F2C5C;
    font-size: 14px;
    font-weight: 500;
}
.entry-button{
    width: 100%;
    max-width: 220px;
    display: block;
    margin-left: auto;
}
.entry-button img{
    width: 100%;
    display: block;
    border-radius: 100px;
}

/* ハンバーガー */
.hamburger {
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:7px;
  width:32px;
  height:32px;
  border:none;
  background:none;
  cursor:pointer;
}
.hamburger span {
  display:block;
  height:2px;
  width:30px;
  background:#1F2C5C;
  transition:0.3s;
}
.hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
    opacity:0;
}
.hamburger.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  transform: translateX(100%);
  background: #D3E0E6;
  padding: 40px 20px;
  transition: .4s;
  z-index: 99;
}
.sp-menu.open {
  transform:translateX(0);
}
.sp-menu-list {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.sp-menu-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F1F5F7;
  padding: 5px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #1F2C5C;
}
.arrow {
  width:36px;
  height:36px;
  border-radius:50%;
  background:#d6e6f2;
  position:relative;
}
.arrow::before {
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-40%, -50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #1F2C5C;
}
/* entry */
.sp-entry{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
  background:linear-gradient(90deg,#7cc9ef,#0a5fb7);
  padding: 5px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color:white;
}
.arrow.white{
  background:white;
}
.arrow.white::before{
  border-left:14px solid #0a5fb7;
}

@media(max-width:1100px){
  .nav__wrapper{
      display:none;
  }
  .entry-button{
      display:block;
      max-width: 130px;
      margin-left: auto;
  }
  .hamburger{
      display:flex;
  }
}
@media (min-width: 751px) {
  .nav__item span {
      display: block;
  }
}

.first-view {
    position: relative;
    overflow: hidden;
    margin: 5% 0 -8px;
}
.first-view video {
    width: 100%;
}

@media (max-width: 768px) {
    .first-view {
        margin-top: 56px;
    }
}

.first-view .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
}
.first-view h1 {
    position: absolute;
    top: 22%;
    left: 0;
    width: 38.5%;
    margin-left: 17.6%;
}
.first-view .model {
    margin: 100px auto 0;
}
.first-view .model picture {
    display: block;
    width: 48%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.fv_sp_copy{
  display: none;
}
@media (max-width: 768px){
  .first-view{
    position: relative;
  }
  .fv_sp_copy{
    display: block;
    position: absolute;
    left: 10px;
    bottom: 10%;
    z-index: 5;
    width: calc(100% - 10px);
    pointer-events: none;
  }
  .fv_sp_copy_main{
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: .02em;
  }
  .fv_sp_copy_line1,
  .fv_sp_copy_line2{
    display: block;
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    text-shadow: 0 6px 18px rgba(0,0,0,.35);
  }
  .fv_sp_copy_sub{
    margin: 0;
    line-height: 1.2;
    letter-spacing: .02em;
  }
  .fv_sp_copy_subbg{
    display: inline;
    background: none;
    padding: 0;
    border-radius: 0;
    color: #1F2C5C;
    font-weight: 800;
    font-size: 16px;
    text-shadow:
      0 0 6px rgba(255,255,255,.45),
      0 0 12px rgba(255,255,255,.28),
      0 0 18px rgba(255,255,255,.18),
      0 6px 18px rgba(0,0,0,.18);
  }
}

.about-section{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.about-section__bg{
    position: relative;
}
.about-section__bg img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 620px;
}
.about-section__wrap{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.about-section__title{
    position: absolute;
    top: 13%;
    color: #fff;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: .04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.about-section__textspace{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    min-width: 1080px;
}
.about-section__textspace-img{
    width: 100%;
    height: auto;
    display: block;
}
.about-section__textspace-body{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 17% 4%;
}
.about-section__textspace-body p{
    margin: 0 0 14px;
    color: #0b2239;
    font-size: 15px;
    line-height: 1.9;
}
.about-section__textspace-body p:last-child{
    margin-bottom: 0;
}
.about-section__btn{
    position: absolute;
    bottom: 10%;
    width: 280px;
}
.about-section__btn img{
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 767px){
  .about-section__title{
    font-size: 18px;
    top: 7%;
  }
  .about-section__textspace{
    top: 48%;
    transform: translate(-50%, -50%);
    min-width: 380px;
  }
  .about-section__textspace-body p {
    margin: 0 0 14px;
    color: #1F2C5C;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
  }
  .about-section__textspace-body{
    padding: 0px 10%;
    font-size: 13px;
  }
  .about-section__btn{
    bottom: 6%;
    width: 250px;
  }
}
/* ========== jobdesc section ========== */
.jobdesc{
    position: relative;
    padding: 64px 0 90px;
    overflow: hidden;
    background: #fff;
}
.jobdesc__bg{
    position: absolute;
    inset: 0;
    background: url("../img/engineering/job_description_inner.webp") center/cover no-repeat;
    opacity: .45;
    pointer-events: none;
}
.jobdesc__inner{
    position: relative;
    width: min(1100px, 92%);
    margin: 0 auto;
}
.jobdesc__cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 26px;
}
.jobdesc__card{
    background: #fff;
    border-radius: 55px 14px 14px 14px;
    box-shadow: 0px 2px 4px 5px rgba(0, 0, 0, .10);
    padding: 18px 18px 20px;
}
.jobdesc__thumb{
    border-radius: 14px;
    overflow: hidden;
    background: #f4f7fb;
}
.jobdesc__thumb img{
    width: 100%;
    height: auto;
    display: block;
}
.jobdesc__card-title{
    margin: 16px 0 12px;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    color: #1F2C5C;
    line-height: 2;
}
.jobdesc__text{
    margin: 0;
    color: #1F2C5C;
    font-size: 14px;
    line-height: 1.9;
}
.jobdesc__btn{
    display: block;
    width: 280px;
    margin: 34px auto 0;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.jobdesc__btn img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px){
  .jobdesc{
    padding: 46px 0 70px;
  }
  .jobdesc__cards{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* company-examples */
.company-examples{
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
}
.company-examples__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.company-examples__bg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.company-examples__inner{
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin: 0 auto;
}
.company-examples__title{
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: bold;
    color: #1F2C5C;
    text-align: justify;
}
.company-examples__line{
    display: block;
    height: 1px;
    background: #1F2C5C;
    width: 100%;
}
.company-examples__slider{
    position: relative;
    margin-top: 22px;
    padding-bottom: 88px;
}
.company-examples__slider .swiper{
    overflow: visible;
}
.company-examples__slider .swiper-wrapper{
    align-items: center;
}
.company-examples__slider .swiper-slide{
    display: flex;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease, filter .25s ease;
    opacity: 1;
    transform: scale(.88);
}
.company-examples__slide-img{
    width: 100%;
    height: auto;
    display: block;
}
.company-examples__slider .swiper-slide-active{
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.company-examples__pagination{
  position: absolute !important;
  left: 50% !important;
  bottom: 23px !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.company-examples__pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: .35;
  margin: 0 !important;
  background: rgba(255,255,255,.9);
}
.company-examples__pagination .swiper-pagination-bullet-active{
  opacity: 1;
  background: rgba(255,255,255,1);
}
.company-examples__nav{
  position: absolute;
  bottom: 8px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 6;
  line-height: 0;
}
.company-examples__nav img{
  width: 46px;
  height: 46px;
  display: block;
}
.company-examples__prev{
  left: calc(50% - 180px);
}
.company-examples__next{
  right: calc(50% - 180px);
}
/* PC/SP 表示切替 */
.company-examples__nav-pc { 
    display:block;
}
.company-examples__nav-sp { 
    display:none; 
}

@media (max-width: 1024px){
  .company-examples{
    padding: 60px 0 36px;
  }
  .company-examples__heading h2{
    font-size: 30px;
  }
}
@media (max-width: 768px){
  .company-examples{
    padding: 5% 0;
  }
  .company-examples__heading h2{
    font-size: 24px;
  }
  .company-examples__line{
    width: 92%;
  }
  .company-examples__nav img {
    display: none;
  }
  .company-examples__slider{
    position: relative;
    margin-top: -15px;
    padding-bottom: 10%;
  }
  .company-examples__pagination { 
    display: none !important;
  }
}
/* SP：prevオミット */
@media (max-width: 900px){
  .company-examples__prev{
    display: none !important;
  }
  .company-examples__next{
    top: auto;
    bottom: 12px;
    right: 14px;
    transform: none;
    width: auto;
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .company-examples__nav-pc{ display:none; }
  .company-examples__nav-sp{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .company-examples__swipe-text{
    font-weight: 800;
    font-size: 18px;
    color: #202a5a;
    letter-spacing: .02em;
  }
  .company-examples__swipe-circle{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #202a5a;
    position: relative;
    flex: 0 0 34px;
  }
  .company-examples__swipe-circle::after{
    content:"";
    position:absolute;
    top:50%;
    left:52%;
    transform: translate(-50%, -50%);
    width:0;
    height:0;
    border-left: 8px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .company-examples__next:active{
    transform: scale(.98);
  }
}

/* ========== growth section ========== */
.growth{
  position: relative;
  padding: 64px 0 20px;
  overflow: hidden;
  background: #fff;
}
.growth__inner{
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
}
.growth__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.growth__card{
    background: #fff;
    border-radius: 55px 14px 14px 14px;
    box-shadow: 0px 2px 4px 5px rgba(0, 0, 0, .10);
    padding: 18px 18px 20px;
}
.growth__thumb{
    border-radius: 14px;
    overflow: hidden;
    background: #f4f7fb;
}
.growth__thumb img{
    width: 100%;
    height: auto;
    display: block;
}
.growth__ribbon{
    margin: 16px 0 18px;
    padding: 10px 0px;
    background: #0a78c6;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    border-radius: 6px;
}
.growth__lead{
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;
    color: #1F2C5C;
}
.growth__leadline{
  height: 1px;
  background: rgba(11,34,57,.55);
  margin: 12px 0 12px;
}
.growth__text{
    margin: 0;
    color: #1F2C5C;
    font-size: 14px;
    line-height: 1.9;
}
.growth__btn{
  display: block;
  width: 280px;
  margin: 34px auto 0;
  filter: drop-shadow(5px 7px 2px rgba(0, 0, 0, .12));
}
.growth__btn img{
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px){
  .growth{
    padding: 46px 0 70px;
  }
  .growth__cards{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.daily-schedule{
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.daily-schedule__inner{
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
}
@media (max-width: 900px){
  .daily-scheduleh{
    padding: 46px 0 70px;
  }
}  
/* voice section */
.voice{
  padding: 0px 0 40px;
  background: #fff;
}
.voice__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}
.voice__wrap{
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 18px;
}
.voice .swiper-slide{
  height: auto;
  display: flex;
}
/* Swiper本体 */
.voice__slider{
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  box-sizing: border-box;
}
.voice .swiper-wrapper{
  align-items: stretch;
}
.voice__card{
    background: #fff;
    border-radius: 18px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .12);
    padding: 5%;
    margin: 5% auto;
    height: 100%;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    align-items: center;
}
.voice__left{
  display: flex;
  justify-content: center;
  align-items: center;
}
.voice__photo{
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}
.voice__right{
  width: 100%;
}
.voice__qa + .voice__qa{
  margin-top: 22px;
}
.voice__q{
    margin: 10px 0 10px;
    display: inline-block;
    background: #202a5a;
    color: #fff;
    font-size: 18px;
    letter-spacing: .02em;
    padding: 10px 18px;
}
.voice__a{
  margin: 0;
  color: #0b2239;
  font-size: 14px;
  line-height: 1.9;
}
.voice__nav::before{
  content: none !important;
}
.voice__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  width: 70px;
  height: 70px;
  z-index: 5;
}
.voice__nav img{
  width: 100%;
  height: 100%;
  display: block;
}
.voice__prev {
    left: 0;
}
.voice__next {
    right: 0;
}
.voice__nav-pc{ display: block; }
.voice__nav-sp{ display: none; }
.voice__nav:hover{
  opacity: .9;
}
.voice__nav:active{
  transform: translateY(-50%) scale(.96);
}
.voice__nav.swiper-button-disabled{
  opacity: .35;
  pointer-events: none;
}
.voice__btn{
  display: block;
  width: 280px;
  margin: 0px auto 0;
  filter: drop-shadow(5px 7px 2px rgba(0, 0, 0, .12));
}
.voice__btn img{
  width: 100%;
  height: auto;
  display: block;
}
.voice__btn:hover{
  opacity: .95;
}
.voice__btn:active{
  transform: scale(.99);
}

@media (max-width: 1024px){
  .voice__wrap{
    padding: 0 70px;
  }
  .voice__card{
    padding: 34px 36px;
    grid-template-columns: 380px 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px){
  .voice__wrap{
    padding: 0 0px;
  }
  .voice__card{
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .voice__nav{
    width: 58px;
    height: 58px;
  }
  .voice__prev{ left: -6px; }
  .voice__next{ right: -6px; }
  .voice__q{
    font-size: 14px;
    padding: 10px 14px;
  }
  .voice__qa {
    display: none;
  }
  .voice__a{
    font-size: 13px;
    line-height: 1.9;
  }
  .voice__btn{
    width: min(720px, 92vw);
    margin-top: 34px;
  }
  .voice__btn img {
    display: block;
    width: 280px;
    margin: 34px auto 0;
  }
}
/* =========================
   SP：prevオミット + Swipeボタン右下
========================= */
@media (max-width: 900px){
  .voice__slider {
    padding: 0px 10px 15%;
  }
  .voice__prev{
    display: none !important;
  }
  .voice__next{
    top: auto;
    bottom: 12px;
    right: 18px;
    left: auto;
    transform: none;
    width: auto;
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
  }
  .voice__nav-pc{ display: none; }
  .voice__nav-sp{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .voice__swipe-text{
    font-weight: 800;
    font-size: 18px;
    color: #202a5a;
    letter-spacing: .02em;
  }
  .voice__swipe-circle{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #202a5a;
    position: relative;
    flex: 0 0 34px;
  }
  .voice__swipe-circle::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .voice__next:active{
    transform: scale(.98);
  }
}

/* entry cta（整理版：CSSマルキーのみ） */
.entry-cta{
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: #fff;
}

/* 背景（マルキー） */
.entry-cta__bg-marquee{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* 3周分：1周ぶん（=全体の1/3）だけ左に流せば継ぎ目なし */
.entry-cta__bg-track{
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: entryMarquee 28s linear infinite;
}

/* 1枚の幅（連結の“リズム”を揃える） */
.entry-cta__bg-item{
  flex: 0 0 420px; /* PC */
  height: 100%;
}

@media (max-width: 900px){
  .entry-cta__bg-item{ flex-basis: 220px; } /* SP */
}

.entry-cta__bg-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

/* 白フィルター */
.entry-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.62) 0%,
    rgba(255,255,255,.62) 50%,
    rgba(255,255,255,0) 70%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

.entry-cta__inner{
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.entry-cta__title{
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #202a5a;
  font-size: clamp(22px, 2.2vw, 34px);
  text-align: justify;
}

.entry-cta__buttons{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.entry-cta__btn{
    margin: 10px 0 10px;
    display: inline-block;
    background: #202a5a;
    color: #fff;
    font-size: 36px;
    letter-spacing: .02em;
    padding: 10px 18px;
    font-weight: 500;
}
.entry-cta__btn:hover {
    opacity: .95;
}
.entry-cta__btn:active {
    transform: translateY(1px) scale(.995);
}
@keyframes entryMarquee{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(calc(-100% / 3),0,0); }
}
@media (max-width: 900px){
    .entry-cta{
        padding: 44px 0 52px;
    }
    .entry-cta__buttons{
        flex-direction: column;
        gap: 18px;
    }
    .entry-cta__btn{
        width: min(720px, 92vw);
        height: 92px;
        font-size: 26px;
    }
    .entry-cta__buttons{
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
    }
    .entry-cta__btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 260px;
        height: 84px;
        border-radius: 999px;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        font-size: 22px;
        letter-spacing: .02em;
        background: linear-gradient(90deg, #76bfe8, #0c5fae);
        box-shadow: 4px 6px 4px rgba(0,0,0,.18);
        border: 3px solid rgba(255,255,255,.85);
    }
    .entry-cta__btn:hover{ opacity: .95; }
    .entry-cta__btn:active{ transform: translateY(1px) scale(.995); }
    .entry-cta__buttons {
        justify-content: center;
    }
    .entry-cta__title {
        margin: 22px 0 22px;
        text-align: center;
    }
    .entry-cta__bg-marquee{
        position: relative;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }
}
@media (max-width: 480px){
  .entry-cta__btn{
    height: 84px;
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce){
  .entry-cta__bg-track{ animation: none; }
}

/* footer */
.site-footer{
  background:#16285a;
  color:#fff;
  font-family: Arial, sans-serif;
}
.site-footer__inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 34px 0 26px;
  display:flex;
  justify-content:space-between;
  gap: 24px;
}
.site-footer__brand{
  flex: 0 0 auto;
  display:block;
}
.site-footer__brand img{
  width: 220px;
  height:auto;
  display:block;
}

.site-footer__nav{
  flex: 1 1 auto;
}
.site-footer__navList{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 34px;
}
.site-footer__navList a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.site-footer__navList a:hover{
  text-decoration: underline;
}

/* CTA（右の2ボタン） */
.site-footer__cta{
  flex: 0 0 200px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  align-items:stretch;
}
.site-footer__ctaBtn{
  position:relative;
  display:block;
  background:#fff;
  color:#16285a;
  font-weight:700;
  text-decoration:none;
  border-radius: 999px;
  line-height: 45px;
  padding: 0 54px 0 30px;
  border: 1px solid #0542b7;
  box-shadow: 4px 4px 0 #0542b7;
}
.site-footer__ctaBtn::after{
  content:"";
  position:absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid #16285a;
}
.site-footer__ctaBtn:hover{
  opacity:.85;
}

/* 下段（コピー） */
.site-footer__bottom{
    background:#fff;
    padding: 18px 0;
}
.site-footer__copy{
    margin: 0;
    text-align: center;
    color: #16285a;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px){
  .site-footer__inner{
    width: 100%;
    padding: calc(35/750*100vw) calc(35/750*100vw);
    display: flex;
    flex-direction: column;
    align-items: stretch; /* ★中央寄せにならないように */
  }

  .site-footer__cta{
    display:none;
  }

  /* ナビを先、ロゴを後 */
  .site-footer__nav{ order: 1; }
  .site-footer__brand{ order: 2; }

  /* 縦リスト＋区切り線 */
  .site-footer__navList{
    display:block;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,.2);
    text-align: left; /* ★文字を左寄せに固定 */
  }
  .site-footer__navList li{
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .site-footer__navList a{
    display:block;
    padding: calc(24/750*100vw) 0;
    font-size: 16px;
  }

  /* ロゴを下にセンター配置（添付SPのイメージ） */
  .site-footer__brand{
    margin-top: calc(34/750*100vw);
    display:flex;
    justify-content:center;
  }
  .site-footer__brand img{
    width: min(320px, 70%); /* ★少し大きめにして添付の印象に寄せる */
    height:auto;
    display:block;
  }

  .site-footer__bottom{
    padding: calc(18/750*100vw) 0;
  }
  .site-footer__copy{
    font-size: 11px;
  }
}

.nav__item:hover, .entry-button:hover, .button:hover, .prev-arrow:hover, .next-arrow:hover, .button02:hover {
  opacity: .6;
}
.entry-button a {
  width: 240px;
}
.header .entry-button a::after {
  right: 48px;
}
.cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.card_image {
  width: 100%;
}
.footer-bottom > .logo {
  margin-left: 30px;
}

/* SP・PC表示切替 */
@media (max-width: 768px) {
    h2 {
        font-size: calc(52/750*100vw);
        letter-spacing: 0.02em;
    }
    .sponly {
        display: block;
    }
    .pconly {
        display: none;
    }
}
@media (min-width: 769px) {
    .pconly {
        display: block;
    }
    .sponly {
        display: none;
    }
}
@media (min-width: 769px) {
    .entry-buttons{
        display: flex !important;
        margin: auto;
    }
}