.company{
  background: #F6FAFF;
  position:relative;
  overflow: visible;
}

/* 2カラム */
.company__container{
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
}

/* ラッパーは幅だけ制御（小さくしたい上限を指定） */
.company__image-wrap{
  position: relative;
}

.company__image-wrap img{
  position: absolute;
  width: 105%;
  object-fit: cover;
  border-radius: 0 30px 30px 0;
  z-index: 6;
  max-height: 500px;
}

/* 右側 */
.company__right{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* キャッチ（右寄せ・グラデ文字） */
.company__catch{
  text-align:center;
  font-weight: 700;
  font-size: clamp(20px,2.2vw,28px);
  color: #2D5EA3;
  align-self:flex-start;         /* カード右端と揃える */
  width: 100%;
}

/* 1行目を左にずらす */
.catch-line--left {
  transform: translateX(-10%);
}

/* 2行目を右にずらす */
.catch-line--right {
  transform: translateX(10%);
}

/* 白カード */
.company__card{
  background:#E8EDF5;
  padding:clamp(80px,3vw,100px);
}

.company__header{ margin-bottom:24px; }
.company__subtitle{
  display:block;
  margin-bottom:8px;
  font-weight: 700;
  font-size: 15px;
  color: #2D5EA3;
}
.company__title{
  margin:0;
  font:700 clamp(20px,2.2vw,30px)/1.3 "Noto Sans JP", system-ui, sans-serif;
  color:var(--text);
}
.company__text{
  margin:0 0 18px;
  font:500 15px/1.8 "Noto Sans JP", system-ui, sans-serif;
  color:var(--text);
}
.company__btn{
  display:inline-block;
  margin-top:6px;
  padding:14px 28px;
  border-radius:999px;
  font:700 15px/1 "Noto Sans JP", system-ui, sans-serif;
  background: #2D5EA3;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(45,94,163,.3);
  transition:transform .2s ease, box-shadow .2s ease;
  width: 80%;
  text-align: center;
}
.company__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(45,94,163,.4);
}

.company-bottom-circle {
  position: absolute;
  left: 10%;
  top: -10%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 80%;
  max-width: none; 
}

.company-bottom-circle__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: none !important;
  transform-origin: center;
  animation: ibc-spin 60s linear infinite;
}

.office__meeting_container {
  position: relative;
  display: block; /* 画像サイズに合わせる場合 */
  width: 100%; /* 必要なら調整 */
  max-height: 945px;
  line-height: 0;
  font-size: 0;
  overflow: hidden; 
  padding: 100px 0;
}

.office__meeting {
  display: block;
  width: 100%;
  height: auto;
}

.office__meeting_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: auto;
  z-index: 2;
}

.office__meeting_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140%;
  height: auto;
  z-index: 2;
}

/* レスポンシブ */
@media (max-width:1024px){
  .company{
    padding-top: 40px;
  }
  .company__container{ grid-template-columns:1fr; gap:36px; }
  .company__image{ height:320px; border-radius:12px; position: relative; display: block;}
  .company__catch{ text-align:left; align-self:stretch; }
  .company__card{ border-radius:12px; }
  .company__card{
    padding: 24px 24px;
  }
  .company__image-wrap img{
    position: relative;
    border-radius: 0;
  }
  .company-bottom-circle {
    display: none;
  }
  .catch-line--left,
  .catch-line--right {
    text-align: center;    /* 中央寄せ */
    margin: 0 auto;
  }
  .company{
    padding:32px;
  }
}

@media(max-width:765px){
   .office__meeting_container{
    display: none;
  }
}
