@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --hdr-h: 80px;
  --cont-width:1180px;
  --cont-width02:1040px;
  --cont-width03:1100px;
  --mv-width:1500px;
}

/* anchor offset for sticky header (native hash jump safety) */
html{ scroll-padding-top: calc(var(--hdr-h) + 12px); }
:target{ scroll-margin-top: calc(var(--hdr-h) + 12px); }


@media screen and (min-width:1700px){
  :root {
  --cont-width:1600px;
  --mv-width:1900px;
}
}

    main.form__cont{
      min-height: calc(100vh - 680px);
    }

.u-gap-80{
  display: grid;
  gap:80px;
}

.u-gap-20{
  display: grid;
  gap:20px;
}

.u-gap-60{
  display: grid;
  gap:60px;
}


  .u-gap-40{
    display: grid;
    gap:40px;
  }


  .u-gap-16{
    display: grid;
    gap:16px;
  }

.u-gap-30{
  display: grid;
  gap:30px;
}

.u-gap-8{
  display: grid;
  gap:8px;
}


strong{
  font-weight: bold !important;
}

.roboto{
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
}
/* common */
.u-color-main{
  color:var(--color-main);
}

.u-mt30{
  margin-top: 30px;
}

  .u-section-wrap{
    padding: 95px 0;
  }

  .u-section-wrap02{
    padding: 80px 0;
  }

  .u-section-wrap03{
    padding: 60px 0;
  }
  
  .top-businesses{
    padding-top: 145px;
  }
  
  .u-content-w1180{
    width: 90%;
    max-width: var(--cont-width);
    margin: auto;
  }

  .u-content-w1040{
    width: 90%;
    max-width: var(--cont-width02);
    margin: auto;
  }

  .u-content-w1100{
    width: 90%;
    max-width: var(--cont-width03);
    margin: auto;
  }

  .u-content-w1080{
    width: 90%;
    max-width: 1080px;
    margin: auto;
  }
  
  .u-content-title{
    padding: 30px 8px;
    display: flex;
    align-items: flex-end;
    font-size:48px;
    font-weight:bold;
    letter-spacing: 0.08em;
    gap:25px;
    position: relative;
  }
  
  .u-content-title:after{
    content:" ";
    height: 160px;
    width: 125px;
    background: #DA2128;
    position: absolute;
    clip-path: polygon(0 0, 100% 41%, 100% 100%, 0 60%);
    bottom:25px;
    left: -125px;
  }
  
  .u-content-title small{
    font-size:24px;
    color:var(--color-gray);
    font-weight:600;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
  }

  .u-page-content-title span{
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  .u-page-content-title span:after{
    content: " ";
    height: 1px;
    width: 120px;
    background: #F73F3F;
    bottom:0;
    left: 0;
    position: absolute;
    display: block;
  }
  
  .u-page-content-title small{
    color:#D5D5D5;
    display: block;
  }
  
  .u-page-content-title{
    margin-bottom: 80px;
  }

.tx-center {
  text-align: center;
}
/* btn */
  .btn-wrap-pt01{
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap:20px;
    position: relative;
    z-index: 3;
  }
  
  .top-businesses-list a:hover{
    opacity: 1;
  }
  
  .btn-wrap-pt01__arrow{
    border-radius:100px;
    padding:10px 10px;
    border:1px solid var(--color-main);
    line-height: 0;
    transition: 0.5s;
  }
  
  a:hover .btn-wrap-pt01__arrow{
    background: var(--color-main);
  }
  
  a:hover .btn-wrap-pt01__arrow *{
    fill:#ffffff;
  }  
    
  .btn-wrap-pt02{
    display: inline-flex;
    border:1px solid var(--color-main);
    font-weight: bold;
    align-items: center;
    justify-content: center;
    gap:10px;
    color:var(--color-main);
    padding: 13px 40px;
    transition: 0.5s;
    background: #ffffff;
  }
  
  .btn-wrap-pt02:hover{
    background:var(--color-main);
    color:#ffffff;
    opacity: 1;
  }  
  
  .btn-wrap-pt02__arrow{
    border-radius:100px;
    padding:10px 10px;
    border:1px solid var(--color-main);
    line-height: 0;
    transition: 0.5s;
    transform: 0;
  }
  
  a:hover .btn-wrap-pt02__arrow{
    border:1px solid #ffffff;
  }
  
  a:hover .btn-wrap-pt02__arrow *{
    fill:#ffffff;
  }  

  .btn-wrap-pt03{
    display: inline-flex;
    border:1px solid #C3B26C;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    gap:10px;
    color:#ffffff;
    width: 104px;
    height: 33px;
    transition: 0.5s;
    background: #C3B26C;
  }
  
  .btn-wrap-pt03:hover{
    background:#ffffff;
    color:#C3B26C;
    opacity: 1;
  }  

.btn-wrap-pt03 svg *{
  fill:#ffffff;
}

  .btn-wrap-pt03:hover svg *{
  fill:#C3B26C;
}
/* header */
header.main-header {
  position: sticky;
  top: 0;
  height: var(--hdr-h);
  background: #fff;
  z-index: 99;
  box-shadow:0 4px 4px 0 rgba(0 0 0 / 8%);
}
.header__inner {
  max-width: var(--mv-width);
  margin: auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.brand {
  font-weight: 700;
}
/* ハンバーガー（モバイルのみ表示） */
#hamburger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center;
}
#hamburger:focus-visible {
  outline: 2px solid #8ab4ff;
  outline-offset: 2px;
}
.hamburger__bar {
  position: relative;
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: #222;
  border-radius: 1px;
  transition: background .2s ease;
}
.hamburger__bar::before, .hamburger__bar::after {
  content: "";
  position: absolute;
  left: 0;
  inline-size: 22px;
  block-size: 2px;
  background: #222;
  border-radius: 1px;
  transition: transform .22s ease, opacity .2s ease;
}
.hamburger__bar::before {
  transform: translateY(-7px);
}
.hamburger__bar::after {
  transform: translateY(7px);
}
/* active → バツ */
#hamburger.is-active .hamburger__bar {
  background: transparent;
}
#hamburger.is-active .hamburger__bar::before {
  transform: rotate(45deg);
}
#hamburger.is-active .hamburger__bar::after {
  transform: rotate(-45deg);
}
/* ナビ（モバイルはドロワー） */
#nav {
  position: fixed;
  inset: var(--hdr-h) 0 0 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .25s ease;
}
#nav.open {
  transform: none;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  
}
.nav__item {
  margin: 6px 0;
  position: relative;
}
/* サブ（モバイルはアコーディオン） */
.mega {
  margin: 6px 0 0;
  border: 1px solid #eee;
  border-radius: 8px;
}
.mega[hidden] {
  display: none;
}

.nav__link{
  padding: 10px 13px;
}

.mega a{
  display: block;
  padding: 6px 0;
  color: inherit;
  text-decoration: none;
}
.expander {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.expander__icon {
  inline-size: 1em;
  text-align: center;
  font-weight: 700;
}

.expander__icon{
  display: none !important;
}


/* モバイルの開閉アニメ用（高さが不定でもOKにするため JS で height を操作） */
@media (max-width:1099px) {
  .mega {
    overflow: hidden;
    padding: 0 8px;
  }
  .mega__inner {
    padding: 8px 0;
  }
  .mega[data-animating="true"] {
    will-change: height;
    transition: height .24s ease;
  }
  
  .expander__icon{
    display:block !important;
  }
  
 .mega a{
    color:rgba(129, 129, 129, 1);
  }
  
  .expander__label,
  .nav__link{
    padding: 10px 13px !important;
    font-size: 20px !important;
  }
  
  .mega__inner{
    padding-left: 5px;
  }
  
.mega {
    border: none;
}  
  
.head-btn {
    margin-top: 30px;
    justify-content: center;
}
  
.header__inner {
    padding: 0;
  padding-left: 10px;
}
  
  
  
}



/* --- デスクトップ（≥1024px） --- */
@media (min-width:1110px) {
  #hamburger {
    display: none;
  }
  #nav {
    position: static;
    transform: none;
    transition: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .header__inner {
    grid-template-columns: auto 1fr;
  }
  .nav__list {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .nav__link{
    display: block;
  }
  
  .nav__item {
    margin: 0;
    position: relative !important;
  }
  
  .nav__item:before{
    content:" ";
    width: 0;
    position: absolute;
    left: 0;
    bottom:0;
    height: 3px;
    background: var(--color-main);
    display: block;
    transition: 0.5s;
  }
  
  .nav__item:hover:before {
    width: 100%;
  }
  .expander {
    padding: 10px 6px;
  }
  /* メガメニュー：ふわっと出る（opacity + translateY） */
  .has-mega {
    position: static;
  }
  .has-mega > .mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    background: #fff;
    background: #ffffff;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 12px; /* アニメの初期状態 */
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    width: 400px;
    box-shadow:0 4px 4px 0 rgba(0 0 0 / 8%);
  }
  
    /* トリガーとパネルの間の隙間を物理的に埋める透明ゾーン */
  .has-mega::after{
    content:"";
    position:absolute;
    left:0; right:0;
    top:100%;
    height:16px;         /* 隙間の保険（10〜20pxでOK） */
  }
  /* デスクトップでは hidden を無効化して常時 block に（視覚は上のvisibilityで制御） */
  .has-mega > .mega[hidden] {
    display: block;
  }

  @media (hover:hover) and (pointer:fine) {
    .has-mega:hover > .mega, .has-mega:focus-within > .mega {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
      transition: opacity .2s ease, transform .2s ease;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  #nav {
    transition: none
  }
  .hamburger__bar::before, .hamburger__bar::after {
    transition: none
  }
  @media (min-width:1024px) {
    .has-mega > .mega {
      transition: none
    }
  }
}
@media (min-width:1100px) {
  /* リサイズ直後の一瞬だけ強制で隠す保険 */
  .mega.force-hide {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ===== 親メニューを「リンク + 開閉ボタン」にするための追記（PC挙動は変更しない） ===== */

.u-sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* ラベルをリンク化：見た目は元のまま（色・下線だけ整える） */
.expander__label{
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

/* 右端の開閉ボタン（SPだけ使う） */
.expander__toggle{
  appearance:none;
  border:0;
  background:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0;              /* ベースは0。タップ領域はSPで付与 */
}

/* SPのみ：タップしやすい領域 */
@media (max-width:1099px){
  .expander__toggle{
    padding: 12px 6px;      /* だいたい元のボタンと同等の触りやすさ */
    margin-left: 8px;
  }
}

/* PCは hover で出すので toggle は消す（＝PC見た目を変えない） */
@media (min-width:1110px){
  .expander__toggle{ display:none; }
}


.top-content{
  position: relative;
}

  .top-content:after{
    content:" ";
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    background: linear-gradient(
    280deg,          /* ← ここで角度指定 */
    #8AB7DC 0%,      /* 薄い水色 */
    #ffffff 50%);
    z-index: -1;
    top:0;
    right: 0;
    
  }

  
  .head-btn{
    display: flex;
    gap:20px;
    align-items: center;
  }
  
  .head-btn a{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: 40px;
    padding: 0 24px;
    transition: 0.5s;
  }
  
  .head-btn a *{
    transition: 0.5s;
  }
  
  .head-btn .pt01{
    border:1px solid var(--color-main);
    color:var(--color-main);
  }
  
  .head-btn .pt01 *{
    fill:#1353AA;
    color:#ffffff;
  }
  
  .head-btn .pt01:hover *{
    fill:#ffffff;
  }
  
  .head-btn .pt01:hover{
    background: var(--color-main);
    color:#ffffff;
  }
  
  .head-btn .pt02 *{
    fill:#ffffff;
  }
  
  .head-btn .pt02{
    border:1px solid var(--color-brand);
    color:#ffffff;
    background:var(--color-brand);
  }
  
  .head-btn .pt02:hover *{
    fill:var(--color-brand);
  }
  
  .head-btn .pt02:hover{
    background: #ffffff;
    color:var(--color-brand);
  }

/* =========================================
  expander を「親リンク + 右端アイコン(button)」に変更
  既存JSは .expander を拾うので、クリック対象を .expander__toggle に寄せるためのCSS
========================================= */

/* sr-only（必要なら） */
.u-sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* expander をボタン→ラッパーdivにしたので見た目を維持 */
.expander{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:8px;
  padding:0;          /* 既存の .expander の padding はここで無効化 */
  border:0;
  background:none;
}

/* 親リンク（ラベル）側：押せる領域を確保 */
.expander__label{
  display:block;
  flex:1 1 auto;
  padding:12px 0;     /* 旧 .expander の縦padding相当 */
  color:inherit;
  text-decoration:none;
}

/* 右端のトグルボタン */
.expander__toggle{
  appearance:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:12px 0;     /* 縦paddingを揃える */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

/* 既存アイコン要素は toggle 内に入ったが、見た目は維持 */
.expander__toggle .expander__icon{
  inline-size:1em;
  text-align:center;
  font-weight:700;
}

/* フォーカス可視化（キーボード操作） */
.expander__label:focus-visible,
.expander__toggle:focus-visible{
  outline:2px solid #8ab4ff;
  outline-offset:2px;
  border-radius:6px;
}

/* 既存の「PCで＋非表示 / SPで表示」を維持しつつ、対象を差し替え */
.expander__icon{
  display:none !important;
}

@media (max-width:1099px){
  .expander__icon{
    display:block !important;
  }
}

/* 既存の .nav__link padding 指定と整合（必要なら expanderにも寄せる） */
@media (min-width:1110px){
  /* PCはホバーでメガメニューなので、トグルは実質不要＝非表示でもOK */
  .expander__toggle{
    display:none;
  }

  /* PC時、親リンクを .nav__link と同じ見え方に寄せたい場合 */
  .expander__label{
    padding:10px 6px; /* 旧 .expander padding相当 */
    display:block;
  }
}

/* 既存の .expander__icon の強制display制御が残っている場合の上書き保険 */
.expander__icon{
  display:none !important;
}
@media (max-width:1099px){
  .expander__toggle .expander__icon{
    display:block !important;
  }
}

.nav__parent{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.expander__toggle{
  appearance:none;
  border:0;
  background:none;
  padding:10px 12px;
  line-height:1;
  cursor:pointer;
}

/* PCは toggle 非表示（ホバーでメガを出す想定） */
@media (min-width:1110px){
  .expander__toggle{ display:none; }
}

/* main-visual */
.main-visual {
  max-width: var(--mv-width);
  width: 100%;
  padding-left:80px;
  padding-right: 40px;
  margin: auto;
  position: relative;
}

/* アスペクト比を固定したい場合（16:9） */
.main-visual__movie {
  position: relative;
  z-index: 10;
  width: 100%;
  aspect-ratio: 1320 / 520;  /* 使えない環境なら padding-top で代用 */
  overflow: hidden;
  margin: auto;
  left: -40px;
}

/* 背景として全面に敷く動画 */
.main-visual__video {
  position: absolute;
  inset: 0;            /* top:0; right:0; bottom:0; left:0; のショートハンド */
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 余白なくトリミング */
}

/* 上に載せるコンテンツ */
.main-visual__content {
  position: relative;
  z-index: 1;
  background: rgba(19 83 170 / 40%);
  width: 100%;
  height: 100%;
}
  
  .main-visual__inner{
    position: absolute;
    left: 55px;
    bottom:45px;
  }
  
  .main-visual__title{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.5em;
    text-shadow: 4px 4px 4px rgba(0 0 0 / 50%);
    color:#ffffff;
    margin-bottom: 10px;
  }

  .main-visual__lead{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6em;
    color:#ffffff;
    text-shadow: 4px 4px 4px rgba(0 0 0 / 50%);
  }  
  
  .main-visual__back{
    width: calc(100% - 120px);
    height: calc(100% + 30px);
    position: absolute;
    z-index: 0;
    background: var(--color-main);
    top:40px;
    left:80px;
  }
  
  .main-visual__marqueeinner{
    position: relative;
    width: 100%;
    height: 100%;
  }  
  
.marquee {
  overflow: hidden;
  width: 100%;    /* お好みで */
  color: #fff;
  position: absolute;
  left: 0;
  bottom:8px;
  
}

.marquee__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__text {
  padding-right: 1rem;   /* テキスト同士の間隔 */
  font-size: 34px;
  opacity: 8%;
  font-weight: bold;
}

/* アニメーション：右 → 左 に 50% 分だけ流す */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}  
  

/* top-main */
  .top-businesses__btn-wrap{
    margin-top:60px;
    display: flex;
    gap:40px;
    flex-wrap: wrap;
  }
  
  .top-businesses-list{
    display: grid;
    gap:40px 20px;
    grid-template-columns: repeat(3,1fr);
  }

.u-btn-wrap02{
  text-align: center;
}

.u-btn-wrap02 a{
  width: 380px;
}

  .top-businesses__app{
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 12px 0 rgba(19 56 83 / 10%);
    margin: 60px 0 40px;
  }
  
  .top-businesses__app-list{
    display: grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
    padding:0 30px;
    margin-top: 20px;
  }

  .top-businesses__app-list li{
    display: grid;
    text-align: center;
    gap:10px;
  }

.top-about{
  padding: 60px 0 30px;
  background:url("../images/top-about__bg.webp");
  background-position: right center;
  background-size: calc(100% - ((100% - (var(--cont-width) + 100px)) / 2)) 100%;
  background-repeat: no-repeat;
}

.top-reason{
  padding: 150px 0;
}

  .top-reason .u-content-w1180{
    position: relative;
  }

  .top-reason .u-content-title,
  .top-reason .u-content-text,
  .top-reason .u-btn-wrap02{
    position: relative;
    z-index: 5;
  }
  
  .top-reason__img{
    position: absolute;
    right: 0;
    bottom:-15px;
    box-shadow: 30px 30px 0 0 var(--color-main);
    z-index: 0;
    line-height: 0;
  }

.top-recruit{
  background-image:url("../images/top-recruit__bg.webp");
  background-position:center;
  background-size: cover; 
}

.top-recruit-cont *{
  color:#ffffff !important;
}

.top-topics{
  padding-top: 120px;
}

  .top-topics-cont{
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 0 8px 0  rgba(0 0 0 / 8%);
  }
  
  .top-topics-cont li a{
    display: flex;
    padding:20px 0;
    border-bottom: 1px solid #F8F8F8;
    gap:20px;
    transition: 0.5s;
  }
  
  .top-topics__category{
    text-align: center;
    display: inline-block;
    width: 80px;
    padding: 3px 0;
    border:1px solid var(--color-gray);
    margin-right: 20px;
  }
  
  .top-topics-cont li a h3{
    transition: 0.5s;
  }
  
  .top-topics-cont li a:hover h3{
    color:var(--color-main);
    text-decoration: underline;
  } 

  .main-footer{
    padding: 80px 0 20px;
    background: #F9F9F9;
  }
  
  .main-footer__logo{
    text-align: center;
    margin-bottom: 35px;
  }
  
  .main-footer__text{
    text-align: center;
    margin-bottom: 60px;
  }
  
  .main-footer__nav-wrap{
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 90%;
  }
  
  .main-footer__nav-elm{
    margin-bottom: 14px;
    display: block;
  }
  
  .main-footer__nav-sub-elm{
    color:#818181;
  }
  
  .main-footer__ud-wrap{
    max-width: 1020px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
  }
  
  .main-footer__ud a{
    display: inline-block;
  }
  
  .main-footer__ud a:first-child:after{
    content:" | ";
  }
  
  .main-footer__copy{
    color:#D5D5D5;
  }
/*=============
otherpage 
==============*/

/* company */
  .page-title{
    padding: 90px 0 40px;
    background-size: cover;
    background-position: center;
  }

  .page-title *{
    color:#ffffff;
  }

  .page-title__h1{
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  
  .company__list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:50px;
  }
  
  .company__cont .btn-wrap-pt01{
    justify-content: space-between;
  }
  
  .company__list-text span.roboto{
    display: block;
    color:#D5D5D5;
  }

.company__list a:hover{
  opacity: 1;
}

/* businesses */

  .businesses-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px 40px;
  }
  
  .businesses-list li{
    width: 100%;
    height: auto;
    aspect-ratio:320 / 200;
    background-size: cover;
  }
  
  .businesses-list a{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: flex-end;
    padding: 20px 24px;
    background: linear-gradient(to bottom,rgba(19 83 170 / 0%) 60%,rgba(19 83 170 / 100%) 90%);
    color:#ffffff;
    flex:1;
  }
  
  .businesses-list a:hover{
    opacity: 1;
  } 
  
  .businesses-list .btn-wrap-pt01{
    justify-content: space-between;
    width: 100%;
  }   
  
  .businesses-list .btn-wrap-pt01__arrow{
    border:1px solid #ffffff;
  }  
  
  .businesses-list *:hover .btn-wrap-pt01__arrow{
    background: initial;
  }

.businesses__content .top-businesses__btn-wrap{
  gap:20px;
  }

.businesses__content .btn-wrap-pt02{
 padding: 10px 25px; 
}

  .businesses__intro-wrap{
    display: grid;
    gap: 80px;
  }
  
  .businesses__intro-sec{
    position: relative;
    padding-top: 180px;
  }
  
  .businesses__intro-article{
    padding: 40px 40px 0;
    background: #ffffff;
    position: relative;
    z-index: 3;
    max-width: 750px;
  }
  
  .businesses__intro-titleimg{
    position: absolute;
    z-index: 0;
    overflow: hidden;
    height: 300px;
    width: 100%;
    top:0;
    left: 0;
  }
  
  .businesses__intro-titleimg img{
    object-fit: 100%;
    object-position: center;
  } 
  
  .businesses__intro-title{
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .businesses__intro-title:before{
    content:" ";
    width: 100%;
    height: 2px;
    background: #D5D5D5;
    bottom:0;
    left: 0;
    position: absolute;
  }
  
  .businesses__intro-title:after{
    content:" ";
    width: 120px;
    height: 2px;
    background: #F73F3F;
    bottom:0;
    left: 0;
    position: absolute;
  }
  
  .businesses__intro-text{
    margin: 20px 0;
  }

  .businesses-intorolist{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:60px;
  }
  
  .businesses-intorolist .btn-wrap-pt01{
    justify-content: space-between;
  }
  
  .businesses-intorolist a:hover{
    opacity: 1;
  }

  .businesses-intro-second-wrap{
    background:#F8F8F8;
    margin-top: 80px;
  }
  
  .businesses-intro-second{
    display: grid;
    gap:50px;
    grid-template-columns: repeat(2,1fr);
  }
  
  .businesses-intro-secondsec{
    background: #ffffff;
    position: relative;
  }
  
  .businesses-intro-second-article{
    padding: 40px 40px 150px;
  }
  
  .businesses-intro-second-btnwrap{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom:40px;
    left: 0;
  }

  .businesses__outro-cont{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
    align-items: center;
  }
  
  .businesses__outro-title{
    margin-bottom: 20px;
    margin-top: -20px;
  }

  .businesses__outro-title span{
    color:#1353AA;
  }
  
  .businesses__outro-text{
    margin: 20px 0;
  }

/* recruit */

  .recruit__portlate{
    margin-top: 80px;
    position: relative;
    padding-right: calc((100vw - var(--cont-width)) / 2);
  }
  
  .recruit__portlate:before{
    content:" ";
    right: 0;
    z-index: 0;
    position: absolute;
    top:-40px;
    height: 240px;
    width: 75vw;
    background: var(--color-main);
    display: block;
  }
  
  .recruit__portlate-cont{
    background: #ffffff;
    position: relative;
    z-index: 3;
    box-shadow: 16px -8px 24px 0 rgba(0 0 0 / 8%);
    margin-bottom: 60px;
    padding-left: calc((100vw - var(--cont-width)) / 2);
  }
  
   .recruit__portlate-inner{
    padding: 60px 50px;
    padding-left: 0;
  }
  
  .recruit__portlate-obj{
    position: absolute;
    top:60px;
    right: 60px;
  }
  
  .u-page-content-title.pt02{
    margin-bottom: 20px;
  }
  
  .recruit__portlate-subtitle{
    margin: 30px 0 20px;
  }
  
  .recruit__portlate-list{
    display: grid;
    max-width: 1000px;
    gap:0 40px;
    grid-template-columns: repeat(2,1fr);
  }
  
  .recruit__portlate-list li{
    padding: 20px 0;
    border-bottom:1px dashed #818181;
  }
  
  .recruit__portlate-list li:before{
    content:"・";
    color:#F73F3F;
  }

  .recruit__portlate-lineup{
    position: relative;
    padding-top: 170px;
  }
  
  .recruit__portlate-lineup-thumb{
    position: absolute;
    z-index: 0;
    height: 250px;
    width: 100%;
    top:0;
    left: 0;
  }
  
  .recruit__portlate-lineup-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .recruit__portlate-lineup-block{
    background: #ffffff;
    padding: 40px 32px;
    display: grid;
    gap:40px;
    box-shadow:0 0 24px 0 rgba(0 0 0 / 16%);
  }
  
  .recruit__portlate-lineup-title{
    padding:2px 25px;
    position: relative;
    margin-bottom:20px;
  }
  
  .recruit__portlate-lineup-title:before{
    content:" ";
    width: 17px;
    height: 20px;
    background: #F73F3F;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    display: block;
    position: absolute;
    left: 0;
    top:0;
  }
  
  .u-table{
    width: 100%;
  }
  
  .u-table th{
    background: var(--color-main);
    color:#ffffff;
    text-align: center;
    min-height: 80px;
    vertical-align: middle;
    padding: 10px 20px;
    border-bottom: 1px solid #ffffff;
  }
  
  .u-table th:not(:last-child){
    border-right:1px solid #ffffff;
  }
  
  .u-table td{
    min-height: 80px;
    border-bottom: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;
    padding: 10px 20px;
  }
  
  .u-table td:last-child{
    min-height: 80px;
    border-right: 1px solid #E3E3E3;
  }

.u-table.table-center *{
  text-align: center !important;
}

.recruit__information{
  background-image: url("../images/otherpage/recruit__information-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
}

.u-page-content-title.pt-white{
  color:#ffffff;
}

.u-page-content-title.pt-white span:after{
  background:#ffffff;
}

.u-page-content-title.pt-white small{
  color:#D5D5D5;
}

  .recruit__information-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:60px;
  }
  
  .recruit__information-item{
    padding: 20px;
    background: #ffffff;
  }
  
.scroll-wrap {
  position: relative;
  padding-bottom: 30px;
}

.scrollbar-track {
  height: 4px;
  background: #ddd;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.scrollbar-thumb {
  height: 4px;
  width: 0%;
  background: #0053c9; /* 青部分 */
}

.scroll-content {
  overflow-x: auto;     /* 横スクロール有効化 */
  overflow-y: hidden;   /* 縦スクロール不要なら隠す */
  -webkit-overflow-scrolling: touch; /* iOS なめらかスクロール */
}

.recruit__gallery-list {
  display: flex;        /* ← 横一列に並べる */
  gap: 20px;
  white-space: nowrap;  /* ← 念のため折り返し防止 */
}

.recruit__gallery-item {
  flex: 0 0 auto;       /* ← アイテム幅を固定 */
  width: 570px;         /* もしくは img の幅に合わせる */
}
  
.scroll-content::-webkit-scrollbar {
  display: none;
}

/* ↓ Firefox用 */
.scroll-content {
  scrollbar-width: none;
}  
  
  .recruit__gallery{
    padding-left: calc((100vw - var(--cont-width)) / 2);
  }

  .document__cont .u-content-w1080{
    padding: 0 40px 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 8px 0 rgba(0 0 0 / 8%);
  }
  
  .document__cont{
    padding: 60px 0 80px;
    background: #F8F8F8;
  }
  
  .document__title{
    padding-top: 60px;
    margin-bottom: 20px;
  }
  
  .form-table{
    margin-top: 40px;
    width: 100%;
  }
  
  .document__heading{
    text-align: center;
  }
  
  .form-table{
    width: 100%; 
    border-top: 1px solid #E3E3E3;
  }
  
  .form-table th{
    width: 300px;
    padding: 24px 0;
    border-bottom: 1px solid #E3E3E3;
    vertical-align: top;
    text-align: left;
  }
  
  .form-table td{
    width: calc(100% - 320px);
    padding: 24px 0;
    border-bottom: 1px solid #E3E3E3;
  }
  
  .form-table th span{
    font-size: 12px;
    color:#ffffff;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    margin-right: 5px;
  }
  
  .form-table th span.req{
    background:#FE9533;
  }
  
  .form-table th span.any{
    background:#D5D5D5;
  }
  
  .form-table input[type="text"],
  .form-table input[type="email"],
  .form-table input[type="tel"],
  .form-table textarea,
  .form-table select{
    display: block;
    width: 100%;
    padding: 15px;
    border:1px solid #D9D9D9;
    border-radius: 4px;
    font-weight: normal;
    }
  
  /* input / textarea の placeholder */
.form-table *::placeholder{
  color:#D5D5D5;
}
  
.form-table select.is-placeholder{
  color:#D5D5D5;
}
  
  .form-title-wrap{
    padding-top: 10px;
  }

 .form-acsept{
    padding: 40px 0;
    text-align: center;
  }
  
  .form-acsept a{
    text-decoration: underline;
  }
  
  .submitBtn{
    height: 60px;
    width: 260px;
    display: inline-flex;
    color:#ffffff;
    background: #C3B26C;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: 0.5s;
    margin-top: 20px;
    cursor: pointer;
    border:1px solid #C3B26C;;
  }
  
  .submitBtn svg{
    display: inline-block;
    margin-left: 10px;
    transition: 0.5s;
  }
  
  .submitBtn:hover{
    background: #ffffff;
    color: #C3B26C;
  }

  .submitBtn:hover svg *{
    fill:#C3B26C;
  }
  
/* =========================================
  .input-form 配下：CF7 radio / checkbox のみ装飾
========================================= */

/* 横並び（スクショみたいに） */
.input-form .wpcf7-form-control.wpcf7-radio,
.input-form .wpcf7-form-control.wpcf7-checkbox{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.input-form .wpcf7-list-item{
  margin: 0; /* CF7標準margin打ち消し */
}

.input-form .wpcf7-list-item label{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* inputは見えなくする（クリックはlabelで拾う） */
.input-form .wpcf7-list-item input[type="radio"],
.input-form .wpcf7-list-item input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

/* テキスト側にUI描画スペース */
.input-form .wpcf7-list-item .wpcf7-list-item-label{
  position: relative;
  padding-left: 34px;
  line-height: 1.4;
}

/* ----- RADIO：青丸＋中央●（スクショ寄せ） ----- */
.input-form .wpcf7-radio .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:22px;
  height:22px;
  transform: translateY(-50%);
  border:2px solid #cccccc;
  border-radius:50%;
  background:#fff;
  box-sizing:border-box;
}

.input-form .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked  + .wpcf7-list-item-label::before{
  border:2px solid #1F4E9F;
}

.input-form .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after{
  content:"";
  position:absolute;
  left:6px;
  top:50%;
  width:10px;
  height:10px;
  transform: translateY(-50%);
  background:#1F4E9F;
  border-radius:50%;
}

/* ----- CHECK：未選択は薄グレー / 選択は青チェック（いい感じ） ----- */
.input-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] + .wpcf7-list-item-label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:22px;
  height:22px;
  transform: translateY(-50%);
  border:2px solid #c9c9c9;
  border-radius:4px;
  background:#fff;
  box-sizing:border-box;
}

.input-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::before{
  border-color:#1F4E9F;
  background: rgba(31, 78, 159, 0.08);
}

.input-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
  content:"";
  position:absolute;
  left:7px;
  top:50%;
  width:7px;
  height:12px;
  transform: translateY(-55%) rotate(45deg);
  border-right:3px solid #1F4E9F;
  border-bottom:3px solid #1F4E9F;
}

/* フォーカス（キーボード操作対応） */
.input-form .wpcf7-list-item input:focus-visible + .wpcf7-list-item-label::before{
  outline: 3px solid rgba(31, 78, 159, 0.25);
  outline-offset: 2px;
}

/* 既存のチェック装飾を acceptance にも適用するための差分 */
.input-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item{
  margin: 0;
}

.input-form .wpcf7-form-control.wpcf7-acceptance label{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.input-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.input-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] + .wpcf7-list-item-label{
  position: relative;
  padding-left: 34px;
  line-height: 1.4;
}

.input-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] + .wpcf7-list-item-label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:22px;
  height:22px;
  transform: translateY(-50%);
  border:2px solid #c9c9c9;
  border-radius:4px;
  background:#fff;
  box-sizing:border-box;
}

.input-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before{
  border-color:#1F4E9F;
  background: rgba(31, 78, 159, 0.08);
}

.input-form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
  content:"";
  position:absolute;
  left:7px;
  top:50%;
  width:7px;
  height:12px;
  transform: translateY(-55%) rotate(45deg);
  border-right:3px solid #1F4E9F;
  border-bottom:3px solid #1F4E9F;
}

.input-form .wpcf7-list-item-label a{
  position: relative;
  z-index: 1; /* クリック優先 */
}

  .u-page-content-title.pt-center{
    text-align: center;
    margin-bottom: 40px;
  }
  
  .u-page-content-title.pt-center span:after{
    left: calc(50% - 60px);
  }
  
  .other-first-content{
    padding: 60px 0 30px;
  }
  
  .other-content{
    padding: 30px 0;
  }
  
  .other-last-content{
    padding: 30px 0 60px;
  }
  
  .identity__heading-cont{
    text-align: center;
  }
  
  .identity__heading-cont h2{
    margin-bottom: 40px;
  }
  
  .identity__slogan-cont{
    text-align: center;
  }
  
  .identity__slogan-text{
    margin-top: 40px;
  }


.advantage{
  position: relative;
}
.advantage:after{
    content:" ";
    width: 100%;
    position: absolute;
    height: 100%;
    display: block;
    background: linear-gradient(
    280deg,          /* ← ここで角度指定 */
    #8AB7DC 0%,      /* 薄い水色 */
    #ffffff 50%);
    z-index: -1;
    top:0;
    right: 0;
    
  }

  .advantage__heading-cont{
    display: grid;
    gap:40px;
    text-align: center;
  }
  
  .advantage__point-cont{
    display: grid;
    gap:40px;
  }
  
  .advantage__point-box{
    padding: 40px 60px;
    background: #ffffff;
    box-shadow: 0 0 16px 0 rgba(0 0 0 / 8%);
  }
  
  .advantage__point-title{
    text-align: center;
    margin-bottom: 30px;
  }
  
  .advantage__point-title .num{
    font-size: 64px;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 0.08em;
    color:#D5D5D5;
    display: block;
  }  
  
  .advantage__point-block{
    display: flex;
    gap:40px;
  }
  
  .advantage__point-img{
    width: 300px;
  }
  
  .advantage__point-inner{
    width: calc(100% - 340px);
  }
  
  .advantage__point-inner-lead{
    margin: 10px 0;
  }
  
  .advantage__point-inner-text{
    padding: 10px 0;
    border-top:1px solid #D5D5D5;
    border-bottom:1px solid #D5D5D5;
  }
  
  .advantage__point-box:nth-child(even) .advantage__point-block{
    flex-flow: row-reverse;
  }

  .advantage__point-ud{
    text-align: center;
    margin-top: 40px;;
  }
  
  .advantage__point-ud-text{
    display: inline-block;
    padding: 2px 10px;
    background: #ffffff;
    margin-bottom: 10px;
  }


  .tc-center{
    text-align: center;
  }
  
  .u-page-content-title.pt-center.mb0{
    margin-bottom: 0;
  }
  
  .policy__quality-list{
    display: grid;
    text-align: center;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
  }
  
  .policy__quality-list li{
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 16px 0 rgba(0 0 0 / 8%);
  }
  
  
  .policy__sustainability-cont{
    display: grid;
    grid-template-columns:300px 1fr;
    gap:40px;
  }
  
  
  .policy__sustainability-text dl{
    display: grid;
    grid-template-columns:2em 1fr;
    margin-bottom: 5px;
  }
  

  .access__nav{
    display: grid;
    gap:40px 60px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 20px;
  }  
  
  .access__nav.pt01 li a{
    display: grid;
    gap:20px;
    grid-template-columns: 140px 1fr;
    align-items: center;
    color:#ffffff;
  }
  
  .access__nav li .access__nav-info{
    display: flex;
    gap:10px;
    align-items: center;
  }
  
  .access__nav.pt01 li .access__nav-info{
    justify-content: space-between;
  }
  
  .access__nav.pt02{
    margin-top: 40px;
  }

  .u-table-type02{
    width: 100%;
    border-top:1px solid #E3E3E3;
    border-left:1px solid #E3E3E3;
  }
  
  .u-table-type02 th{
    border-bottom:1px solid #E3E3E3;
    border-right:1px solid #E3E3E3;
    padding: 20px;
    background: #FCFCFC;
    vertical-align: top;
    text-align: left;
  }
  
  .u-table-type02 td{
    border-bottom:1px solid #E3E3E3;
    border-right:1px solid #E3E3E3;
    padding: 20px;
    vertical-align: top;
    text-align: left;    
  }
  
  .u-table-type02 th:nth-child(1),
  .u-table-type02 td:nth-child(1){
    vertical-align: middle;
    text-align: center;
  }
  
  .access__map-box .businesses__intro-title{
    max-width: 670px;
    margin-bottom: 40px;
  }
  
  .access__map-block{
    display: grid;
    grid-template-columns: 1fr 440px;
    gap:40px;
    align-items:flex-end;
  }
  
  .access__map-info{
    min-height: 420px;
  }

  .u-table-type03{
    width: 100%;
  }
  
  .u-table-type03 td,
  .u-table-type03 th{
    border-bottom: 1px solid #E3E3E3;
    text-align: left;
    padding:12px 0;
  }
  
  .u-list li{
    position: relative;
    padding-left: 1.25em;
  }
  
  .u-list li:before{
    content:"・";
    position: absolute;
    left: 0;
    top:0;
  }
  
  .outline__map{
    text-align: center;
    max-width: 800px;
    width:100%;
    margin: auto;
  }

.wafer_test__heading-text{
  color:#818181;
}

  .col2-section__cont{
    display: grid;
    grid-template-columns:520px 1fr;
    gap:40px;
    align-items: center;
  }
  
  .col2-section__box{
    display: grid;
    gap:30px;
  }

  .col2-section__cont.pt02{
    grid-template-columns:1fr 520px;
  }

  .bg-gray{
    background: #F8F8F8;
  }
  
  .pkg-list{
    display: flex;
    gap:16px;
    flex-wrap: wrap;
  }
  
  .pkg-list li{
    padding: 16px 24px;
    background: #ffffff;
    border:1px solid #E3E3E3;
    display: flex;
    align-items: center;
    min-height:90px;
    width: calc((100% - 16px) / 2);
  }

.pkg-list li.full{
  width: 100%;
}

.businesses__intro-title.short{
  max-width: 670px;
}

.pkg__step__box{
  padding: 8px;
  border:1px solid #E3E3E3;
}

.other-last-content.pt02{
  padding-top: 60px;
}

.bg-white{
  background: #ffffff;
}

/* 最低限の整列補助（プロジェクトに合わせて調整OK） */
.u-ta-center { text-align: center; }
.u-ta-left { text-align: left; }
.u-va-middle { vertical-align: middle; }

/* =========================
  Accordion（dlを四角で括る版）
  ※フォントサイズ指定なし
========================= */

/* （任意）全体をさらに外枠で囲みたい場合：
   <div class="aco-group"> ...dlたち... </div> */
.aco-group {
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 24px;
}

/* dl（1項目＝1ボックス） */
.aco-content_dl {
  margin: 0 0 18px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  overflow: hidden; /* 角丸＋中の罫線を綺麗に */
}

/* aco-group内だけ、最後の余白を消す */
.aco-group .aco-content_dl:last-child {
  margin-bottom: 0;
}

.aco-content_dt {
  margin: 0;
}

/* 見出し行（クリック領域） */
.aco-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 22px 24px;     /* ←左右の余白を付ける */
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.aco-trigger:focus-visible {
  outline: 2px solid #1e4a9c;
  outline-offset: 3px;
}

.aco-title { display: inline-block; }

/* + / - アイコン（OKとのことなので維持） */
.aco-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.aco-icon::before,
.aco-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease;
}
.aco-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.aco-trigger[aria-expanded="true"] .aco-icon::after {
  opacity: 0; /* openで縦線を消して「-」 */
}

/* パネル（dd）：高さアニメ前提 */
.aco-content_dd {
  margin: 0;
  border-top: 1px solid #dcdcdc; /* 見出しとの区切り線 */
  overflow: hidden;
  height: 0; /* JSで開閉 */
  padding: 20px;
}

/* テーブルが横に溢れやすい場合の保険（必要なら） */
.aco-content_dd .u-table {
  width: 100%;
}

/* 動きを減らす */
@media (prefers-reduced-motion: reduce) {
  .aco-icon::before,
  .aco-icon::after {
    transition: none;
  }
}

  .inline-btn-wrap{
    grid-template-columns: repeat(3,1fr);
    display: grid;
    margin-top: 0;
  }  
  
  .inline-btn-wrap a{
    width: 100%;
  }  

.u-table.pt02 th{
  border-bottom: 1px solid #ffffff;
}

.u-table.pt02 *:first-child td{
  border-top: 1px solid #E3E3E3;
}

.recruit__portlate-lineup-title.mb0{
  margin-bottom: 0;
}
  
  .analysis__info-text span{
    display: block;
    padding-left: 10px;
  }
  
  .analysis__info-list{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
  }

  .analysis-flow__list{
    display: flex;
    justify-content: space-between;
  }
  
  .analysis-flow__list li{
    width: calc((100% - 180px) / 3);
    padding: 20px;
  }

  .outsourcing-heading__cont{
    display: flex;
    justify-content: space-between;
    gap:60px;
    align-items: center;
  }
  
  .outsourcing-problem__cont{
    padding:40px;
    background: #ffffff;
  }
  
  .outsourcing-problem__list li{
    display: grid;
    grid-template-columns: 34px 1fr;
    padding: 16px 0;
    gap:4px;
    border-bottom: 1px dashed #D5D5D5;
    align-items: center;
  }

  .outsourcing-lead__title span{
    display: inline-block;
    background: var(--color-main);
    padding: 10px 20px;
    color:#ffffff;
  }  
  
  .all-white,
  .all-white *{
    color:#ffffff;
  }
  
  .all-white span:after{
    background: #ffffff;
  }
  
  .outsourcing-order{
    background: var(--color-main);
  }
  
  .outsourcing-order__list{
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
  }
  
  .outsourcing-order__list li{
    padding: 20px;
    background: #ffffff;
  }  

.bg-l-gray{
  background: #F8F8F8;
}

  .outsourcing-features__num{
    font-size: 80px;
    letter-spacing: 0.08em;
    line-height: 1.2em;
    font-style: italic;
  }
  
  .outsourcing-features__inner{
    padding: 40px;
    display: flex;
    gap:60px;
    align-items: center;
    position: relative;
    z-index: 3;
  }
  
  .outsourcing-features__heading{
    display: grid;
    gap:24px;
    grid-template-columns: 95px 1fr;
  }
  
  .outsourcing-features__block{
    position: relative;
  }
  
  .outsourcing-features__block:before{
    content:" ";
    position: absolute;
    height: 100%;
    width: calc(100% - ((100% - 1180px) / 2));
    top:0;
    left: 0;
    display: block;
    background: #ffffff;
    box-shadow: 5px 5px 0 0 var(--color-main);
  }
  
  .outsourcing-features__block:nth-child(even){
    padding-left: 80px;
  }
  
  .outsourcing-features__block:nth-child(even):before{
    left: calc((100% - 1180px) / 2);
    box-shadow: -5px 5px 0 0 var(--color-main);
  }
  
  .outsourcing-features__last{
    background: #ffffff;
    padding: 40px;
    border:1px solid var(--color-main);
  }

.outsourcing-catch{
  background: url("../images/otherpage/outsourcing__bg.webp") center;
  background-size: cover;
  background-repeat: no-repeat;
}

  .outsourcing-catch__cont{
    padding: 40px 80px 80px;
    background: rgba(0 0 0 / 50%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  .outsourcing-catch__cont-title span{
    display: inline-block;
    padding: 5px 25px;
    background: var(--color-main);
  }
  
  .outsourcing-catch__cont-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:10px;
  }
  
  .outsourcing-catch__cont-list li{
    background: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .outsourcing-catch__cont-box{
    padding: 40px;
    background: #ffffff;
  }

.contact__list{
  display: grid;
  max-width: 900px;
  margin: auto;
  gap:56px;
  grid-template-columns: repeat(2,1fr);
}

.contact__list .btn-wrap-pt01{
  justify-content: space-between;
}

  .rec__headeing{
    padding-bottom: 40px;
  } 
  
  .rec__headeing-title{
    padding-bottom: 20px;
    border-bottom: 1px dashed #D5D5D5;
    display: flex;
    align-items: center;
    gap:15px;
  }
  
  .document__cont .rec__headeing-cont{
    padding: 20px 40px;
  }

.rec__cont th{
  text-align: left !important;
}

/* くの字（＜） */
.icon-kunoji{
  --size: 20px;     /* 全体サイズ */
  --stroke: 4px;    /* 太さ */
  --color: #333;    /* 色 */
  width: var(--size);
  height: var(--size);
  display: inline-block;
  position: relative;
}

.icon-kunoji::before{
  content:"";
  position:absolute;
  inset: 0;
  margin: auto;
  width: calc(var(--size) * 0.65);
  height: calc(var(--size) * 0.65);
  border-left: var(--stroke) solid var(--color);
  border-bottom: var(--stroke) solid var(--color);
  transform: rotate(45deg);
  box-sizing: border-box;
}

.entry-form__cols--2{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
}

.entry-form__birth,
.entry-form__birth-fields,
.entry-form__age{
  display: flex;
  align-items: center;
  gap:8px;
}

.entry-form__birth-label{
  width: 3em;
}

.entry-form__birth-fields input{
  width: 130px !important;
}

.entry-form__age input{
  width: 130px !important;
}

.entry-form__stack{
  display: grid;
  gap:10px;
}

.entry-form__cols.entry-form__cols--3{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap:20px;
}

.entry-form__grad-fields{
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-form .u-content-w1080{
  padding-top: 40px;
}

.entry-form__grad-fields input{
  width: 130px !important;
}

  .step-icon{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    color: #ffffff;
    background: var(--color-main);
    border-radius: 100px;
    gap: 0;
    line-height: 1;
  }
  
  .ems-flow__listbox01{
    display: flex;
    gap:16px;
    align-items: center;
  }
  
  .ems-flow__text{
    width: 300px;
  }
  
  .ems-flow__list li{
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .ems-flow__list li:not(:last-child):after{
    content:url("../images/otherpage/under-arrow.svg");
    position:absolute;
    bottom:-45px;
    left: calc(50% - 17px);
  }

.ems-flow__list{
  gap:40px;
}

  .power_supply__new-product-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
  }
  
  .power_supply__new-product-list li{
    background: #ffffff;
  }

.topic-pdf{
  line-height: 0;
  height: 0;
  margin-top: -5px;
  margin-left: -10px;
}
  

  .power_supply__new-product__btn-wrap{
    display: flex;
    justify-content: center;
    gap:20px;
  }
  
  .power_supply__new-product-listbox{
    padding:17px;
  }
  
  .power_supply__new-product-list .btn-wrap-pt02:hover svg *{
    transition: 0.5s;
  }
  
  .power_supply__new-product-list .btn-wrap-pt02:hover svg *{
    fill:#ffffff;
  }

  .prototype__composition-box{
    padding: 40px;
    background: #ffffff;
  }
  
  .prototype__composition-box-head{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap:60px;
    align-items: center;
  }
  
  .prototype__composition-box-list{
    padding: 10px 20px;
    border-left: 1px solid #F73F3F;
  }
  
  .prototype__composition-box-list li{
    padding: 8px 0;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap:2.5px;
  }
  
  .prototype__composition-box-list li:not(:first-child){
    border-top: 1px solid var(--color-l-gray);
  }
  
  .prototype__composition-box-body{
    border:1px solid var(--color-l-gray);
    padding:20px;
  }
  
  .prototype__composition-box-bodylist{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }


  .prototype__composition-block.pt02{
    border:1px solid var(--color-main);
  }
  
  .prototype__composition-box-title.pt02{
    display: grid;
    align-items: center;
    gap:15px;
    grid-template-columns: 34px 1fr;
  }

  .prototype__list-tab-btn{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:4px;
  }
  
  .prototype__list-tab-btn li{
    display:flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border:1px solid var(--color-main);
    color:var(--color-main);
    transition: 0.5s;
    cursor: pointer;
  }
  
  .prototype__list-tab-btn li.active,
  .prototype__list-tab-btn li:hover{
    color:#ffffff;
    background: var(--color-main);
  }
  
  .prototype__list-tab-cont{
    padding: 20px;
    border:solid 1px var(--color-l-gray);
  }
  
  .prototype__list-tab-conttitle{
    padding-bottom: 8px;
    border-bottom:solid 1px var(--color-l-gray);
  }
  
  .prototype__list-tab-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap:20px;
    align-items: flex-start;
  }
  
  .prototype__list-tab-minibox{
    padding-bottom: 20px;
  }
  
  .prototype__list-tab-minibox p{
    display: grid;
    grid-template-columns: 1em 1fr;
  }
  
  .prototype__list-tab-minibox p:before{
    content:"-";
  }
  
  /* 既存そのまま + 列数調整だけ追記でOK */
.prototype__list-tab-box{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap:20px;
}

/* 追加：タブ内容ごとに列数を変える */
.prototype__list-tab-box.is-cols1{ grid-template-columns: 1fr; }
.prototype__list-tab-box.is-cols2{ grid-template-columns: repeat(2, 1fr); }
.prototype__list-tab-box.is-cols4{ grid-template-columns: repeat(4, 1fr); }


/* hidden を確実に効かせる（JSの panels.hidden=true/false 用） */
.prototype__list-tab-cont[hidden]{
  display: none !important;
}

  .prototype__step-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:44px 20px;
  }
  
  .prototype__step-list li{
    position: relative;
  }

  .prototype__step-list li:not(:last-child):after{
    content:url("../images/otherpage/prototype_service__arrow.svg");
    position: absolute;
    right:-40px;
    top:calc(50% - 12px);
  }

.cf7-confirm[hidden]{display:none !important;}
.cf7-confirm{position:fixed; inset:0; z-index:9999;}
.cf7-confirm__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.55);}
.cf7-confirm__panel{position:absolute; inset:0; display:flex; justify-content:center; align-items:flex-start; padding:24px;}
.cf7-confirm__inner{width:min(1080px, 100%); max-height:calc(100vh - 48px); overflow:auto;}

/* =========================
  CF7 confirm modal
  ========================= */
.cf7-confirm[hidden]{
  display:none !important;
}

/* overlay wrapper */
.cf7-confirm{
  position: fixed;
  inset: 0;
  z-index: 10000; /* ヘッダー等より上に */
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

/* backdrop */
.cf7-confirm__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0 0 0 / 0.55);
}

/* panel */
.cf7-confirm__panel{
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100dvh - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0 0 0 / 0.25);
  overflow: hidden; /* 角丸を保つ */
}

/* inner (scroll area) */
.cf7-confirm__inner{
  max-height: calc(100dvh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
}

/* mobile */
@media (max-width: 767px){
  .cf7-confirm{
    padding: 16px 12px;
  }
  .cf7-confirm__inner{
    padding: 18px 14px;
  }
}

/* optional: focus outline */
.cf7-confirm__inner:focus{
  outline: none;
}

/* optional: table spacing inside modal */
.cf7-confirm .u-table,
.cf7-confirm .u-table-type02{
  width: 100%;
}

  .line-up__list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:18px;
  }
  
  .line-up__list li{
    padding:14px;
    background: #ffffff;
  }
  
  .line-up__list-arrow{
    border-radius: 100px;
    padding: 10px 10px;
    border: 1px solid var(--color-main);
    line-height: 0;
    transition: 0.5s;
  }
  
  a:hover .line-up__list-arrow{
    background: var(--color-main);
  }
  
  a:hover .line-up__list-arrow * {
    fill: #ffffff;
  }
  
  .line-up__list-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.line-up__list-img{
  display: flex;
  aspect-ratio:320 / 240;
  height: auto;
  justify-content: center;
  align-items: center;
}

.line-up__list-del{
  width: 180px;
  letter-spacing: 0;
}

.standard_product_lineup .u-table th{
  text-align: left;
}

.btn-wrap-pt02 svg *{
  transition: 0.5s;
}

.btn-wrap-pt02:hover svg *{
  fill:#ffffff;
}

.standard_product_lineup__block{
  position: relative;
}

.standard_product_lineup__block:not(:last-child):after{
  content:" ";
  width: 100%;
  position: absolute;
  bottom:-40px;
  height: 1px;
  border: 1px dashed #D5D5D5;
}

  .module__title{
    display: flex;
    border-top:var(--color-main) solid 4px;
    align-items: center;
    gap:60px;
    letter-spacing: 0;
  }  
  
  .module__title-span{
    color:#ffffff;
    padding:12px 16px;
    background: var(--color-main);
    position: relative;
    display: block;
  }
  
  .module__title-span:after{
    content: " ";
    height: 102%;
    width: 60px;
    background: var(--color-main);
    position: absolute;
    right: -59px;
    top: -1px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  
  .module__sencer-list{
    display: grid;
    gap:30px;
    grid-template-columns: repeat(3,1fr);
  }
  
  .module__sencer-item{
    border:var(--color-main) solid 1px;
    padding: 10px;
  }
  
  .module__h3{
    padding: 4px;
    background:#467DC6;
    color:#ffffff;
  }
  
  .module__sencer-item-cont{
    display: grid;
    gap:10px;
    grid-template-columns: repeat(2,1fr);
  }

  .module__pmic-cont{
    display: flex;
    gap:60px;
  }
  
  .module__pmic-list{
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    width: calc((100% - 120px) / 2);
  }

  .module__pmic-box{
    width: calc((100% - 120px) / 4);
  }
  
  .module__pmic-cont > *{
    position: relative;
  }
  
  .module__pmic-cont > *:not(:last-child):after{
    content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 24px;         /* 線の長さ */
  height: 24px;        /* 線の長さ */
  border-right: 6px solid #2b2621; /* 色：サンプルの黒っぽい色 */
  border-top: 6px solid #2b2621;
  transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
  }
  
  .module__pmic-box02{
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
    border:1px solid var(--color-main);
  }
  
  .module__pmic-box02-inner{
    display: flex;
    align-items: center;
    border:1px solid var(--color-l-gray);
    gap:10px;
  }
  
  .module__pmic-box02-innertitle{
    height: 80px;
    padding: 10px;
    color:#ffffff;
    display: flex;
    align-items: center;
    background:#467DC6;
  }

  .module__hq-cont{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
  }
  
  .module__hq-box{
    padding: 10px;
    border:1px solid #E3E3E3;
  }
  
  .module__hq-box .module__h3{
    display: inline-block;
    padding:3px 20px;
  } 
  
  .module__small-cont{
    display: grid;
    gap:30px;
    grid-template-columns: repeat(2,1fr);
  }
  
  .module__small-contbox{
    display: grid;
    gap:10px;
    grid-template-columns: repeat(2,1fr);
    padding: 10px;
    border:1px solid var(--color-main);
  }
  
  .module__small-conttext{
    padding:10px;
  }
  
  .module__small-conttext.pt02{
    display: flex;
    gap:10px;
  }
  
  .module__small-conttext.pt02 span{
    display: block;
    padding: 3px 10px;
    border:#1353AA 1px solid;
    color:#1353AA;
  }
  
  .module__small-contboxinner{
    margin-bottom: 8px;
  }
  
  .module__small-contbox_b h3{
    padding: 5px 10px;
  }

.page-link{
  gap:20px;
  display: flex;
  justify-content: center;
}

.list-wrap{
  align-items: flex-end;
}

.list-wrap .u-list li{
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.mb-0{
  margin-bottom: 0 !important;
}

.standard_product.pt02 .line-up__list{
  grid-template-columns: repeat(3,1fr);
  max-width: 960px;
  gap:30px;
}

.standard_product__ud-wrap{
  padding: 40px;
  border:1px solid var(--color-main);
  display: grid;
  gap:40px;
}

.standard_product__ud-wrap.pt01{
  grid-template-columns: repeat(2,1fr);
}

.standard_product__ud-wrap.pt02{
  display: flex;
  justify-content: center;  /* ← 列の塊を中央へ */
  gap:40px;
  flex-wrap: wrap;
}

.standard_product__ud-wrap.pt02 > div{
  width:340px;
}

.standard_product_lineup__box{
  display: grid;
  gap:20px;
  grid-template-columns: repeat(2,1fr);
}

.mb-10{
  margin-bottom: 10px;
}

.align-canter{
  align-items: center;
}

.sp-mb20{
  margin-bottom: 20px;
}

.u-table.pd10 td,
.u-table.pd10 th{
  padding:20px 10px;
  word-break: break-all;  
}

.standard_product_lineup .aco-content_dl{
  border:none;
}

.standard_product_lineup .standard_product_lineup__block:after{
  display: none;
}

.u-table.t-fixed{
  width: calc(100% - 20px);
  table-layout: fixed; /* ←これが肝 */
}

.custom_product__cont02{
  border:1px solid var(--color-main);
  padding: 40px;
}



.pkg-download-list{
  display: grid;
  grid-template-columns: repeat(5,1fr);
}

.pkg-download-list .btn-wrap-pt02{
  justify-content: space-between;
}




/* title-image */
.company .page-title{
    background-image: url("../images/otherpage/company__title.webp");
  }

.topics .page-title{
    background-image: url("../images/otherpage/topics__title.webp");
  }

.businesses .page-title{
    background-image: url("../images/otherpage/businesses__title.webp");
  }

.rectuit .page-title{
    background-image: url("../images/otherpage/recruit__title.webp");
  }

.document .page-title{
    background-image: url("../images/otherpage/contact__title.webp");
  }

.identity .page-title{
    background-image: url("../images/otherpage/identity__title.webp");
  }

.advantage .page-title{
    background-image: url("../images/otherpage/advantage__title.webp");
  }

.policy .page-title{
    background-image: url("../images/otherpage/policy__title.webp");
  }

.access .page-title{
    background-image: url("../images/otherpage/access__title.webp");
  padding:60px 0;
  }

.outline .page-title{
    background-image: url("../images/otherpage/outline__title.webp");
  }

.wafer_test .page-title{
    background-image: url("../images/otherpage/wafer__title.webp");
  }

.pkg .page-title{
    background-image: url("../images/otherpage/pkg__title.webp");
  }

.analysis .page-title{
    background-image: url("../images/otherpage/reliability_test__title.webp");
  }

.outsourcing .page-title{
    background-image: url("../images/otherpage/outsourcing__title.webp");
  }

.new_rec .page-title{
    background-image: url("../images/otherpage/new-rec__title.webp");
  }

.mid_rec .page-title{
    background-image: url("../images/otherpage/mid-rec__title.webp");
  }

.ems .page-title{
    background-image: url("../images/otherpage/ems__title.webp");
  }

.power_supply .page-title{
    background-image: url("../images/otherpage/power_supply__title.webp");
  }

.prototype .page-title{
    background-image: url("../images/otherpage/prototype_service__title.webp");
  }

.standard_model .page-title{
    background-image: url("../images/otherpage/standard_model__title.webp");
  }

.module .page-title{
    background-image: url("../images/otherpage/module__title.webp");
  }

.standard_product .page-title{
    background-image: url("../images/otherpage/standard_product__title.webp");
  }

.custom_product .page-title{
    background-image: url("../images/otherpage/custom_product__title.webp");
  }

.other-page .page-title{
    background-image: url("../images/otherpage/other__title.webp");
  }

  .embedded-system .page-title{
    background-image:url("../images/otherpage/embedded-system-title.webp");
  }

@media screen (max-width:1100px) and (min-width:768px){

  
}

@media screen and (min-width:1100px){
    .rectuit td{
    height: 80px;
  }
}

@media screen and (min-width:768px){
  .pc-ov{
    overflow: inherit !important;
  }
  
  .scroll-hint-icon-wrap{
    display: none !important;
  }
  
  .outsourcing-features__inner{
    max-width: 1180px !important;
  }
  
  .recruit__gallery{
    padding-left: 5%;
  }
  
}


/* あるいはターゲット要素側で個別に */
/* PC */
@media (min-width: 901px) {
  [id]{
    scroll-margin-top: 85px;
  }
}

/* SP */
@media (max-width: 900px) {
  [id]{
    scroll-margin-top: 64px;
  }
}

/* =========================
   Hover underline（PC only）
   - Mega menu + Footer menu
========================= */
@media (min-width: 1100px) {

  .mega__inner a{
    display:block;           /* 縦並び維持 */
    position:relative;
    width: fit-content;      /* テキスト幅に合わせる */
    max-width:100%;
  }
  .mega__inner a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:3px;
    background: var(--color-main);
    transform: scaleX(0);
    transform-origin:center top;
    transition: transform .2s ease;
  }
  .mega__inner a:hover::after{
    transform: scaleX(1);
  }

  /* フッターメニュー内リンク */
  .main-footer__nav-elm,
  .main-footer__nav-sub-elm{
    position: relative;
    display: inline-block; /* 下線をテキスト幅にする */
  }
  .main-footer__nav-elm::after,
  .main-footer__nav-sub-elm::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    width: 100%;
    height: 2px;
    background: var(--color-main); /* フッターは背景が濃いので白に */
    transform: scaleX(0);
    transform-origin: center top;
    transition: transform .2s ease;
  }
  .main-footer__nav-elm:hover::after,
  .main-footer__nav-sub-elm:hover::after{
    transform: scaleX(1);
  }
}

.contact-message{
  margin-top: 20px;
  display: block;
}


/* =========================
  Recruit gallery (Flickity化)
  - 既存デザイン維持のため flickity-enabled 時のみ
========================= */
.scroll-wrap .scroll-content{
  /* Flickityのドラッグを自然にする（ネイティブスクロールは使わない） */
  overflow: hidden;
}

.recruit__gallery-list.flickity-enabled{
  margin: 0;
  padding: 0;
  list-style: none;
  /* ドラッグ時の誤選択防止 */
  user-select: none;
  -webkit-user-select: none;
}

.recruit__gallery-list.flickity-enabled .recruit__gallery-item{
  /* 余白感：nectar系の“カード間の間隔” */
  margin-right: 24px;

  /* だいたいの見え幅（必要なら数値だけ調整でOK） */
  width: 380px;
}

@media (max-width: 900px){
  .recruit__gallery-list.flickity-enabled .recruit__gallery-item{
    width: 78vw;
    margin-right: 16px;
  }
}

.recruit__gallery-list.flickity-enabled .recruit__gallery-item img{
  display: block;
  width: 100%;
  height: auto;
}

/* FlickityのUIは使わない（既存のスクロールバーUIを使うため） */
.recruit__gallery-list.flickity-enabled .flickity-prev-next-button,
.recruit__gallery-list.flickity-enabled .flickity-page-dots{
  display: none;
}

.flickity-viewport{
  width: 100%;
}

.out_link{
  display: inline-flex;
  gap:4px;
  text-decoration: underline;
  align-items: center;
}

.new_rec .btn-wrap-pt02,
.mid_rec .btn-wrap-pt02{
  margin-top: 20px;
}

.new_rec .page-link .btn-wrap-pt02,
.mid_rec .page-link .btn-wrap-pt02{
  width: 100%;
  max-width: 300px;
}

.businesses-list .font-20px-bold{
    font-size: 16px;
}

    .t-flex{
      display: flex;
      gap:40px;
    }

  .embedded-system-section01__points{
    display:flex;
    gap:0;
    margin-top: 32px;
    border-top:1px solid #E3E3E3;
    border-bottom:1px solid #E3E3E3;
  }
  .embedded-system-section01__points li{
    flex:1;
    text-align:center;
    padding: 18px 12px;
    position:relative;
  }
  .embedded-system-section01__points li + li::before{
    content:"";
    position:absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
    width:1px;
    height:60%;
    background:#E3E3E3;
  }

  /* SECTION02：ABOUT レイアウト */
  .embedded-system-section02__grid{
    display:flex;
    gap: 40px;
    align-items:center;
  }
  .embedded-system-section02__text{ flex: 1; }
  .embedded-system-section02__img{ flex: 0 0 520px; }
  .embedded-system-section02__img img{ width:100%; height:auto; display:block; }

  /* SECTION03：フロー画像 */
  .embedded-system-section03__flow img{
    width:100%;
    height:auto;
    display:block;
    background:#fff;
  }

  /* SECTION04：技術表（配色・2段左カラム） */
  .embedded-system-tech-table .es-tech-head{
    color:#fff;
    text-align:center;
    letter-spacing: .02em;
  }
  .embedded-system-tech-table .es-tech-head--blank{
    background:#0F2F57;
  }
  .embedded-system-tech-table .es-tech-head--sw{
    background:#1C355A;
  }
  .embedded-system-tech-table .es-tech-head--hw{
    background:#B05A2A;
  }
  .embedded-system-tech-table .es-tech-group{
    background:var(--color-main);
    color:#fff;
    text-align:center;
    width: 160px;
    vertical-align: middle;
  }
  .embedded-system-tech-table .es-tech-label{
    background: var(--color-main);
    color:#fff;
    width: 220px;
    vertical-align: middle;
  }
  .embedded-system-tech-table td{
    background:#fff;
  }
    
      .embedded-system-tech-table th,
      .embedded-system-tech-table td{
    padding:15px;
  }
    
    .embedded-system-section07{
      padding-top: 0;
    }

  /* SECTION07：TOTAL SOLUTION */
  .embedded-system-section07__grid{
    display:flex;
    gap: 35px;
    align-items: center;
  }
  .embedded-system-section07__text{ flex: 1; }
  .embedded-system-section07__img{ flex: 0 0 510px; }
  .embedded-system-section07__img img{ width:100%; height:auto; display:block; }
  .embedded-system-section07__btn{
    width: 220px;
    justify-content: space-between;
    padding: 14px 22px;
  }

  .embedded-system-case-table th,
    .embedded-system-case-table td{
      padding: 20px;
    }

    
    .embedded-system-section07__btn{
      justify-content: center;
      gap:10px;
      margin-top: 15px;
    }
  /* 承継バナー */
  .embedded-system-section07__inherit{
    border: 1px solid var(--color-main);
    padding: 24px;
    margin-top: 80px;
  }

.businesses__intro-title.pt02{
  margin-top: 60px;
}

.is-en .businesses-intorolist .btn-wrap-pt01{
  display: grid;
  grid-template-columns: 1fr 45px;
}
@media screen and (max-width:1099px){
  .nav__item:last-child{
    margin-top: 15px;
  }
}
@media screen and (max-width:767px){
  .is-en .businesses-intorolist .btn-wrap-pt01{
  grid-template-columns: 1fr 30px;
}
}
@media screen and (max-width:767px){
  .is-en .businesses-intorolist .btn-wrap-pt01{
  grid-template-columns: 1fr 30px;
}
}
@media screen and (min-width:767px){
  .top-reason__title{
    padding-right: 570px;
  }
  
  .main-footer__nav{
    padding-right: 30px;
  }
  
  .is-en .cf-btn .btn-wrap-pt01__arrow{
    position: absolute;
    right: 0;
    top:30px;
  }
  
  .is-en .top-businesses-list .btn-wrap-pt01{
   display: grid;
    grid-template-columns: 1fr 45px;
    align-items: flex-start;
  }
  
  .is-en .outsourcing-catch__cont-list .font-14px-medium{
    display: grid;
  }
  
  .is-en .power_supply__new-product__btn-wrap {
    display: grid;
  }
  
  .is-en .prototype__list-tab-btn li {
    height: 85px;
    text-align: center;
  }
  
  .is-en .line-up__list li{
    position: relative;
  }
  
  .is-en .line-up__list-arrow{
    position: absolute;
    bottom:20px;
    right: 20px;
  }
}
.is-en .font-32px-bold,
.is-en .font-32px-bold * {
    line-height: 1.5;
}

.is-en .module__sencer-item{
  display: block;
}

.is-en .module__h3{
  margin-bottom: 10px;
}
  