/* =========================
   Reset
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Noto Sans JP',sans-serif;
  background:#fff;
  color:#111;
  line-height:1.8;
  overflow-x:hidden;
}

/* =========================
   Header
========================= */

.header{
  width:100%;
  padding:24px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  position:fixed;
  top:0;
  left:0;

  z-index:1000;

  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(14px);
}

.header.scrolled{
  padding:18px 8%;
  background:rgba(255,255,255,0.9);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.logo a{
  color:#111;
  text-decoration:none;
  transition:.3s;
}

.logo a:hover{
  opacity:.7;
}

.logo{
  font-size:24px;
  font-weight:700;
}

.nav{
  display:flex;
  gap:30px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  transition:0.3s;
}

.nav a:hover{
  color:#2f80ff;
}

/* =========================
   RECRUIT HERO
========================= */

.recruit-hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* 背景 */
.recruit-hero .hero-bg{
  position:absolute;
  inset:0;
  background:
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2000')
    center/cover;
  transform:scale(1.08);
}

/* 黒×白グラデ（採用系の重厚感） */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,
      rgba(0,0,0,0.55),
      rgba(255,255,255,0.15)
    );
  z-index:1;
}

/* コンテンツ */
.hero-content{
  position:relative;
  z-index:2;
  padding:0 8%;
  max-width:1200px;
  color:#fff;

  margin-top:120px;
}

/* 見出し */
.hero h1{
  font-size:96px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:1px;
  margin-bottom:25px;
  color:#fff;

  max-width:900px;
  white-space:nowrap;
}

/* テキスト */
.hero-text{
  font-size:18px;
  color:rgba(255,255,255,0.85);
  margin-bottom:40px;
}

/* ボタン */
.hero-buttons{
  display:flex;
  gap:20px;
}

/* =========================
   BUTTON (Recruit style)
========================= */

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 44px;
  border-radius:999px;

  font-size:14px;
  font-weight:600;
  letter-spacing:2px;

  text-decoration:none;

  color:#fff;
  background:linear-gradient(135deg,#2f80ff,#5aa7ff);

  box-shadow:
    0 10px 30px rgba(47,128,255,0.35),
    inset 0 0 0 rgba(255,255,255,0);

  overflow:hidden;

  transition:0.4s ease;
  transform:translateY(0);
}

.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transition:0.6s;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 50px rgba(47,128,255,0.45);
}

.btn:hover::before{
  left:100%;
}

.btn:active{
  transform:translateY(-1px) scale(0.98);
}

/* Ghost Button */

.btn.ghost{
  background:transparent;
  color:#fff;

  border:1px solid rgba(255,255,255,0.6);

  box-shadow:none;
}

.btn.ghost:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* スクロール誘導 */
.hero-scroll{
  position:absolute;

  right:80px;
  bottom:30px;

  font-size:20px;
  letter-spacing:3px;

  color:rgba(255,255,255,.7);

  animation:scrollBlink 1.5s infinite;
}

@keyframes scrollBlink{
  0%{opacity:0.3; transform:translateY(0);}
  50%{opacity:1;}
  100%{opacity:0.3; transform:translateY(5px);}
}
/* =========================
   Section
========================= */

.section{
  padding:180px 8%;
}

.gray{
  background:#f7f9fc;
}

.section-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:80px;
}

.section-grid img{
  width:100%;
  height:600px;
  object-fit:cover;
  border-radius:32px;
}

.section h2{
  font-size:64px;
  line-height:1.3;
  margin-bottom:30px;
}

.section-text{
  color:#555;
}

/* =========================
   About
========================= */

.about-grid{
  align-items:center;
}

.about-text{
  position:relative;
}

.about-text::before{
  content:"ABOUT";

  position:absolute;

  top:-80px;
  left:-10px;

  font-size:140px;
  font-weight:700;

  color:rgba(0,0,0,0.03);

  z-index:-1;
}

.about-stats{
  display:flex;
  gap:40px;

  margin-top:50px;
}

.stat h3{
  font-size:42px;
  color:#2f80ff;

  line-height:1;
}

.stat p{
  font-size:12px;
  letter-spacing:2px;
  color:#777;

  margin-top:10px;
}

.about-image{
  position:relative;
}

.about-image img{
  width:100%;
  height:650px;

  object-fit:cover;

  border-radius:0;
}

.about-floating-card{
  position:absolute;

  bottom:40px;
  left:-40px;

  background:rgba(255,255,255,0.78);

  backdrop-filter:blur(10px);

  padding:30px 40px;

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-floating-card p{
  font-size:20px;
  font-weight:700;

  letter-spacing:2px;
}

.about-section{
  position:relative;
}

.about-section::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-1px;

  width:100%;
  height:300px;

  background:linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(247,249,252,1)
  );

  pointer-events:none;
}

/* =========================
   Business Section
========================= */

.business-section{
  position:relative;
  overflow:hidden;
  background:#f7f9fc;

  padding-left:0;
  padding-right:0;
  padding-top:120px;
}

.business-section .mini-title,
.business-section .center-title{
  padding:0 8%;
  margin-bottom:20px;
}

.business-section .center-title{
  margin-bottom:20px;
}

.business-bg-text{

  position:absolute;
  top:70px;
  left:50%;

  transform:translateX(-50%);

  font-size:200px;
  font-weight:700;

  color:rgba(0,0,0,0.03);

  letter-spacing:15px;

  pointer-events:none;

  opacity:0;

  transition:2s ease;
}

.business-section.show-bg .business-bg-text{

  opacity:1;

  transform:
  translateX(-50%)
  translateY(-20px);

}

.business-heading{

  opacity:0;
  transform:translateY(50px);

  transition:1s ease;
}

.business-heading.show{

  opacity:1;
  transform:translateY(0);
}

.business-feature{
  display:flex;
  flex-direction:column;
  gap:0;

  margin-top:60px;

  position:relative;
  z-index:2;
}

/* Business Box */

.business-box{
  position:relative;

  width:100%;
  height:360px;

  overflow:hidden;

  cursor:pointer;

  transition:0.5s;

  border-radius:0;

  text-decoration:none;
  color:inherit;
  display:block;
}

/* Image */

.business-box img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:1s;
  will-change:transform;

  border-radius:0;
}

.business-box:hover img{
  transform:scale(1.05);
}

/* Dark Overlay */

.business-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.05)
  );

  z-index:1;
}

/* White Glass Layer */

.business-shape{
  position:absolute;

  top:0;
  left:0;
  right:0;
  bottom:0;

  background:rgba(255,255,255,0.32);

  border:1px solid rgba(255,255,255,0.45);

  backdrop-filter:blur(4px);

  z-index:2;

  transition:0.45s ease;

  border-radius:0 !important;
}

.business-box:hover .business-shape{
  top:45px;
  left:45px;
  right:45px;
  bottom:45px;

  background:rgba(255,255,255,0.24);
}

/* Text */

.business-content{
  position:absolute;

  left:80px;
  right:80px;

  bottom:50px;

  z-index:5;

  max-width:none;

  color:#fff;

  opacity:0;
  transform:translateY(30px);
  transition:1s;
}

.business-box.show .business-content{
  opacity:1;
  transform:translateY(0);
}

.business-label{
  color:#69a7ff;

  letter-spacing:3px;

  font-size:13px;

  margin-bottom:18px;

  font-weight:700;
}

.business-content h3{
  font-size:30px;
  line-height:1.35;
  margin-bottom:20px;
  letter-spacing:0;
  font-weight:700;

  white-space:nowrap;
  word-break:keep-all;
}

.business-content p{
  color:rgba(255,255,255,0.88);
  font-size:15px;
}


.recruit-text{
  max-width:700px;
}

.recruit-text h2{
  max-width:700px;
}

/* =========================
   RECRUIT BG TEXT
========================= */

.recruit-section{
  position:relative;
  overflow:hidden;
}

.recruit-bg-text{
  position:absolute;

  top:40px;
  left:50%;

  transform:translateX(-50%);

  font-size:200px;
  font-weight:700;

  color:rgba(0,0,0,0.03);

  letter-spacing:20px;

  pointer-events:none;

  z-index:0;
}

.recruit-section .section-grid{
  position:relative;
  z-index:2;
}

.business-more{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

/* =========================
   NEWS
========================= */

.news-section{
  position:relative;
  padding:180px 8%;
  overflow:hidden;
}

.news-more{
  display:flex;
  justify-content:center;
  margin-top:60px;
}

.news-bg-text{
  position:absolute;
  top:100px;
  left:50%;

  transform:translateX(-50%);

  font-size:150px;
  font-weight:700;

  color:rgba(0,0,0,0.03);

  letter-spacing:20px;

  pointer-events:none;
}

.news-wrap{
  max-width:1200px;
  margin:80px auto 0;
}

.news-card{
  display:flex;
  align-items:center;

  gap:50px;

  padding:40px;

  margin-bottom:25px;

  background:#fff;

  text-decoration:none;
  color:#111;

  border:1px solid #eee;

  transition:.4s;

  box-shadow:
  0 10px 40px rgba(0,0,0,.04);

  border-radius:20px;

  overflow:hidden;
}

.news-card:hover{

  transform:translateY(-6px);

  box-shadow:
  0 20px 60px rgba(0,0,0,.08);
}

.news-date{
  min-width:140px;

  font-size:14px;
  font-weight:700;

  color:#2f80ff;

  letter-spacing:2px;
}

.news-content{
  flex:1;
}

.news-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.news-content p{
  color:#666;
}

.news-arrow{
  font-size:32px;
  color:#2f80ff;

  transition:.3s;
}

.news-card:hover .news-arrow{
  transform:translateX(10px);
}

/* =========================
   CONTACT BG TEXT
========================= */

.contact-bg-text{
  position:absolute;

  top:100px;
  left:50%;

  transform:translateX(-50%);

  font-size:120px;
  font-weight:700;

  color:rgba(0,0,0,0.03);

  letter-spacing:20px;

  pointer-events:none;

  z-index:0;
}

.contact-inner{
  position:relative;
  z-index:2;
}

/* =========================
   Contact
========================= */

.contact{
  position:relative;
  padding:140px 8%;
  overflow:hidden;
}

.contact-inner{
  max-width:900px;
  margin:auto;
}

.center{
  text-align:center;
}

.center-title{
  text-align:center;
  margin-bottom:60px;
  font-size:84px;
  letter-spacing:4px;
  font-weight:700;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:20px;

  border:none;

  border-radius:20px;

  background:#f4f7fb;

  font-size:16px;
}

.contact-form textarea{
  height:220px;
  resize:none;
}

.contact-form button{
  border:none;

  background:#2f80ff;

  color:#fff;

  padding:20px;

  border-radius:20px;

  cursor:pointer;

  font-size:16px;
}

.recruit-text .btn{
  margin-top:30px;
}

/* =========================
   Premium Link Button
========================= */

.link-btn{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  padding:18px 38px;

  color:#111;
  text-decoration:none;

  font-size:14px;
  font-weight:700;
  letter-spacing:2px;

  overflow:hidden;

  transition:.4s ease;

  background:transparent;

  border:1px solid #dcdcdc;

  margin-top:40px;

}

/* 流れる背景 */

.link-btn::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  rgba(0,0,0,.03);

  transform:translateX(-100%);

  transition:.5s ease;

  z-index:0;
}

.link-btn:hover::before{

  transform:translateX(0);
}

/* 文字 */

.link-btn span,
.link-btn{
  z-index:2;
}

.link-btn:hover{
  border-color:#2f80ff;
  color:#2f80ff;
}

/* 矢印 */

.link-btn span{

  display:inline-block;

  transition:.35s ease;
}

.link-btn:hover span{

  transform:translateX(8px);
}
/* =========================
   Footer
========================= */

footer{
  padding:40px;
  text-align:center;
  color:#777;
}


/* =========================
   Animation
========================= */

.fade-up,
.fade-left,
.fade-right{
  opacity:0;
  transition:1s;
}

.fade-up{
  transform:translateY(60px);
}

.fade-left{
  transform:translateX(-60px);
}

.fade-right{
  transform:translateX(60px);
}

.show{
  opacity:1;
  transform:translate(0);
}

.about-btn{
  margin-top:70px;
}

.business-link,
.business-bottom{
  text-align:center;
  margin-top:60px;
}

.career-section{
  position:relative;
  overflow:hidden;
}

.career-bg{
  position:absolute;
  top:40px;
  left:50%;

  transform:translateX(-50%);

  font-size:220px;
  font-weight:700;

  letter-spacing:20px;

  color:rgba(0,0,0,0.03);

  pointer-events:none;
  z-index:0;
}

.career-container{
  position:relative;
  z-index:2;
}

.hero{
  position:relative;
  overflow:hidden;
}

.hero-content{
  position:relative;
  z-index:2;
}

/* ========================================
   BUSINESS PAGE
======================================== */

.business-page .hero{

  height:70vh;

  display:flex;

  align-items:center;

  padding:0 8%;

  position:relative;

  background:
  linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
  ),
  url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1800")
  center/cover;
}

.business-page .intro{

  padding:140px 8%;

  text-align:center;
}

.business-page .intro h2{

  font-size:64px;

  margin-bottom:30px;
}

.business-page .intro p{

  max-width:900px;

  margin:auto;

  color:#666;

  line-height:2;
}

.business-wrap{

  max-width:1300px;

  margin:auto;

  padding:0 8% 150px;
}

.business-row{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  margin-bottom:120px;
}

.business-row img{

  width:100%;

  height:500px;

  object-fit:cover;

  box-shadow:
  0 30px 80px rgba(0,0,0,.12);

  transition:.4s;
}

.business-row:hover img{

  transform:translateY(-8px);
}

.business-no{

  font-size:72px;

  font-weight:800;

  color:rgba(47,128,255,.08);

  margin-bottom:20px;
}

.business-row h2{

  font-size:42px;

  margin-bottom:24px;

  line-height:1.3;
}

.business-row p{

  color:#666;

  line-height:2;
}

.reverse .business-text{

  order:2;
}

.reverse .business-image{

  order:1;
}

/* =========================
   Responsive
========================= */

@media (max-width:900px){

  body{
    overflow-x:hidden;
  }

  /* ---------- Header ---------- */

  .header{
    padding:15px 20px;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .logo{
    font-size:20px;
  }

  .nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  .nav a{
    font-size:13px;
  }

  /* ---------- Hero ---------- */

  .hero,
  .recruit-hero{
    min-height:100vh;
  }

  .hero-content{
    margin-top:80px;
    padding:0 20px;
  }

  .hero h1{
    font-size:42px;
    line-height:1.3;
    white-space:normal;
  }

  .hero-text{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:15px;
  }

  .hero-scroll{
    display:none;
  }

  /* ---------- Section ---------- */

  .section{
    padding:90px 20px;
  }

  .section-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .section-grid img{
    width:100%;
    height:300px;
  }

  .section h2{
    font-size:34px;
  }

  .center-title{
    font-size:34px;
    margin-bottom:35px;
  }

  /* ---------- Business ---------- */

  .business-section{
    padding-top:90px;
  }

  .business-bg-text{
    font-size:72px;
    letter-spacing:6px;
  }

  .business-box{
    height:260px;
  }

  .business-content{
    left:20px;
    right:20px;
    bottom:20px;
    max-width:none;
  }

  .business-content h3{
    font-size:20px;
    line-height:1.4;

    white-space:nowrap;
    word-break:keep-all;
}

  .business-content p{
    font-size:13px;
  }

  /* ---------- News ---------- */

  .news-card{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
    padding:25px;
  }

  .news-content h3{
    font-size:22px;
  }

  /* ---------- Contact ---------- */

  .contact{
    padding:90px 20px;
  }

  .contact-bg-text{
    font-size:60px;
  }

}
/* =========================
   Loader
========================= */

.loader{
  position:fixed;
  inset:0;

  background:#fff;

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:99999;

  transition:1s ease;
}

.loader-logo{
  font-size:72px;
  font-weight:700;

  letter-spacing:8px;

  color:#111;

  animation:loaderFade 1.8s ease infinite alternate;
}

.loader.hide{
  opacity:0;
  visibility:hidden;
}

@keyframes loaderFade{

  from{
    opacity:0.4;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/*=========================
  Hamburger
=========================*/

.hamburger{

    width:32px;
    height:24px;

    display:none;

    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;

    z-index:2000;
}

.hamburger span{

    display:block;

    width:100%;
    height:3px;

    background:#111;

    transition:.3s;
}

.hamburger.active span:nth-child(1){

    transform:translateY(10px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-10px) rotate(-45deg);

}
.pc-br{
  display:block;
}

.sp-br{
  display:none;
}

/* ========================================
   ABOUT PAGE
======================================== */

.about-page .hero{

  height:70vh;

  position:relative;

  display:flex;

  align-items:center;

  padding:0 8%;

  background:
  linear-gradient(
  rgba(0,0,0,.45),
  rgba(0,0,0,.45)
  ),
  url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1800")
  center/cover;
}

.hero-bg-text{

  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  font-size:220px;

  font-weight:800;

  color:rgba(255,255,255,.05);

  letter-spacing:18px;

  pointer-events:none;
}

.vision{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;
}

.vision img{

  width:100%;

  height:650px;

  object-fit:cover;
}

.company{

  background:#f7f9fc;
}

.company-table{

  width:100%;

  border-collapse:collapse;

  margin-top:50px;
}

.company-table th{

  width:220px;

  text-align:left;

  padding:24px;

  border-bottom:1px solid #ddd;
}

.company-table td{

  padding:24px;

  border-bottom:1px solid #ddd;
}

.message{

  text-align:center;
}

.message h2{

  font-size:72px;

  margin-bottom:30px;
}

.message p{

  max-width:900px;

  margin:auto;

  color:#666;

  line-height:2.2;

.business-page .hero{

  height:60vh;
}

.business-page .intro{

  padding:100px 8%;
}

.business-page .intro h2{

  font-size:40px;
}

.business-row{

  grid-template-columns:1fr;

  gap:40px;

  margin-bottom:80px;
}

.business-row img{

  height:260px;
}

.business-no{

  font-size:42px;
}

.business-row h2{

  font-size:30px;
}
}

/* =========================
   Hamburger Menu
========================= */

.hamburger{
  display:none;

  width:45px;
  height:45px;

  border:none;
  background:none;

  cursor:pointer;

  position:relative;

  z-index:1100;
}


.hamburger span{

  display:block;

  width:28px;
  height:2px;

  background:#111;

  margin:6px auto;

  transition:.3s;
}


/* =========================
   Hamburger Fix
========================= */

@media(max-width:900px){

.hamburger{
 display:flex;
 flex-direction:column;
 justify-content:space-between;

 width:32px;
 height:24px;

 cursor:pointer;
 z-index:3000;
}


.hamburger span{

 width:100%;
 height:2px;
 background:#111;

 transition:.3s;

}


.nav{

 position:fixed;

 top:0;
 right:-100%;

 width:280px;
 height:100vh;

 background:#fff;

 display:flex;

 flex-direction:column;

 justify-content:center;
 align-items:center;

 gap:35px;

 transition:.4s;

}


.nav.active{

 right:0;

}


.hamburger.active span:nth-child(1){

 transform:translateY(11px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

 opacity:0;

}


.hamburger.active span:nth-child(3){

 transform:translateY(-11px) rotate(-45deg);

}

.recruit-hero h1{

  font-size:38px;
  line-height:1.5;

  white-space:normal;

}


.recruit-hero h1 .pc-br{

  display:none;

}


}

/* スマホ */

@media(max-width:900px){

  .header{

    flex-direction:row;
    padding:20px 6%;

  }


  .hamburger{

    display:block;

  }


  .nav{

    position:fixed;

    top:0;
    right:-100%;

    width:80%;
    height:100vh;

    background:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:.4s;

    box-shadow:-10px 0 40px rgba(0,0,0,.1);

  }


  .nav.active{

    right:0;

  }


  .nav a{

    font-size:18px;

  }


  .hamburger.active span:nth-child(1){

    transform:
    translateY(8px)
    rotate(45deg);

  }


  .hamburger.active span:nth-child(2){

    opacity:0;

  }


  .hamburger.active span:nth-child(3){

    transform:
    translateY(-8px)
    rotate(-45deg);

  }

}

/* =========================
   Hamburger Menu
========================= */

.hamburger{
  display:none;
  width:32px;
  height:24px;
  cursor:pointer;
  position:relative;
  z-index:1100;
}


.hamburger span{

  position:absolute;

  left:0;

  width:100%;

  height:2px;

  background:#111;

  transition:.3s;

}


.hamburger span:nth-child(1){
  top:0;
}

.hamburger span:nth-child(2){
  top:11px;
}

.hamburger span:nth-child(3){
  bottom:0;
}



/* スマホ */

@media(max-width:900px){


.header{

 flex-direction:row;

 padding:20px 6%;

}


.logo{
 font-size:20px;
}



.nav{

 position:fixed;

 top:0;

 right:-100%;

 width:80%;

 height:100vh;

 background:#fff;

 display:flex;

 flex-direction:column;

 justify-content:center;

 align-items:center;

 gap:35px;

 transition:.4s;

 box-shadow:-10px 0 40px rgba(0,0,0,.1);

}


.nav.active{

 right:0;

}


.nav a{

 font-size:18px;

}



.hamburger{

 display:block;

}



.hamburger.active span:nth-child(1){

 transform:
 translateY(11px)
 rotate(45deg);

}


.hamburger.active span:nth-child(2){

 opacity:0;

}


.hamburger.active span:nth-child(3){

 transform:
 translateY(-11px)
 rotate(-45deg);

}


}

@media(max-width:900px){

    .hamburger{

        display:flex;

    }
.logo{

    font-size:20px;

}

.logo a{

    font-size:20px;

}
    .nav{

        position:fixed;

        top:0;
        right:-100%;

        width:280px;
        height:100vh;

        background:#fff;

        flex-direction:column;

        justify-content:center;
        align-items:center;

        gap:35px;

        transition:.4s;

        box-shadow:-10px 0 30px rgba(0,0,0,.08);

        z-index:1500;
    }

    .nav.active{

        right:0;

    }
.nav a{

    position:relative;

    transition:.3s;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:#2f80ff;

    transition:.3s;

}

.nav a:hover::after{

    width:100%;

}
    .nav a{

        font-size:18px;

    }

}

/* =========================
   Responsive line break
========================= */

/* PC用改行 */
.pc-br{
  display:inline;
}


/* スマホでは改行を解除 */
@media(max-width:900px){

  .pc-br{
    display:none;
  }
  .sp-br{
    display:block;
  }
}
/* =========================
   PC・スマホ改行切替
========================= */

.pc-br{
  display:block;
}

.sp-br{
  display:none;

.about-page .hero{

  height:60vh;
}

.hero-bg-text{

  font-size:80px;

  letter-spacing:8px;
}

.vision{

  grid-template-columns:1fr;

  gap:40px;
}

.vision img{

  height:300px;
}

.company-table th,
.company-table td{

  display:block;

  width:100%;

  padding:14px 0;
}

.company-table tr{

  display:block;

  padding:16px 0;

  border-bottom:1px solid #ddd;
}

.message h2{

  font-size:42px;
}
}

@media (max-width:900px){

  .pc-br{
    display:none;
  }

  .sp-br{
    display:block;
  }

}
@media (max-width:900px){

  .message-title{
    font-size:34px !important;
  }

}