@media (min-width: 1400px) { 
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

@media (min-width: 1500px) { 
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1500px;
  }
}


/* ===============================================================================
    index.html
================================================================================== */

.rb-feature-container {
  opacity: 0;
  transform: translateY(10px); /* 少し下にずらしておく */
  transition: opacity 0.5s ease, transform 0.5s ease; /* 0.5秒でふわっと */
}

.rb-feature-container.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}

.footer-menu ul{
  padding-left:0px;
}

.footer-menu li{
  list-style: none; /* デフォルトのマーカーを消す */
  padding: 5px 0px 5px 0px;
  margin-left: 2rem;   /* 必要に応じて */
  display: inline;
  font-size: 1rem;
}

.pc-only-inline {
  display: inline;
}

.sp-only {
  display: none;
}

.rb-link-text {
  font-size: 1rem;
}

.recruit-position {
  width: 57.5%;
  padding-right:15px;
}

.rb-feature-grid {
  display: flex;
}
.rb-feature-left,
.rb-feature-right {
  width: 50%;
}

.scroll-arrow {
  display: none;
  top: 0px;
  right: 0px;
  width: 20px;
  height: 100%;
  align-items: center;     /* 上下中央 */
  justify-content: center; /* 左右中央（不要なら消してOK） */
  background-color: rgb(13 110 253 / 44%) !important;
  margin-right: 10px;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  animation: blink 5s infinite;
}

.dli-caret-circle-fill-right::before {
  content: '';
  color: rgb(0, 5, 255);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.cdb-grow-row {
  display: flex;
  align-items: center;
  gap: 8px; /* ← スラッシュとの間に余白 */
  white-space: nowrap;
}

.slash {
  font-size: 2.5rem;
}

@media (max-width: 767px) {
  .footer-menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    grid-template-rows: repeat(2, auto);   /* 2行 */
    row-gap: 8px;
    column-gap: 10px;
    justify-items: center; /* 中央寄せ */
  }
  .footer-menu li{
    margin-left: 0rem;   /* 必要に応じて */
  }

  .footer-menu li:nth-child(4),
  .footer-menu li:nth-child(5) {
    grid-column: span 1;
  }

  /* 4番目以降は2段目に */
  .footer-menu li:nth-child(4) {
    grid-column-start: 2; /* 4番目を真ん中寄せに */
  }
  .pc-only-inline {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .rb-link-text {
    font-size: 0.8rem;
  }
  .rb-link-icon {
    margin-left:0rem;
    font-size: 12px;
  }
  .recruit-position {
    width: 100%;
    padding-right:0px;
  }
  #interviewList article{
    margin-right: 0px !important;
  }
  #interview-list .flex-column-reverse {
    margin-bottom: 1rem !important;
  }
  .rb-feature-left,
  .rb-feature-right {
    width: 100%;
  }

  .slash {
    margin: 0 0px 0px 20px;
    font-size: 2rem;
  }
}

/* =========================================
   hero
========================================= */
.rb-hero-intro {
  /* background: linear-gradient(180deg, #009BF0 0%, #1a4dbd 50%); */
  z-index: unset;
  padding-top:5rem!important;
  padding-bottom:5rem!important;
  overflow: hidden;
}

.rb-hero-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 1%,    /* 上30%は透明 */
    rgba(0,0,0,0.45) 100%   /* 下70%で徐々に黒くなる */
  );
  z-index: 2;
  pointer-events: none;
}

.rb-hero-copy img {
  width: 75%;
}
.rb-hero-photo .img_pc { 
  display: block;
  opacity: .3;              /* 最初は透明 */
  transition: opacity 1s ease-out, transform 1s ease-out; 

}
.img_pc.visible {
  opacity: 1;
  transform: scale(1);
}
.rb-hero-photo .img_sp { 
  display: none;
  opacity: .3;              /* 最初は透明 */
  transition: opacity 1s ease-out, transform 1s ease-out; 
}
.img_sp.visible {
  opacity: 1;
  transform: scale(1);
}

.rb-hero-intro img {
  height: auto;
  overflow: hidden;
  border-radius: 0px !important;
  opacity: 0.9;
}

/* 流れる全体 */
.bg-flow {
  position: absolute;
  top: 0;
  left: 0;
  display: flex; /* 横方向に並ぶ */
  width: 500%; /* 2セット分 */
  animation: flow-left 120s linear infinite;
}

/* 画像セット */
.flow-set {
  display: flex; /* 横並び */
  flex-direction: row; /* 横方向 */
  gap: 40px; /* 画像間の横間隔 */
}

/* 画像 */
.flow-item {
  border-radius: 10px;
  object-fit: cover;
}

.hero-mid-message {
  padding: 10px !important;
}

.hero-mid-message h2, .hero-mid-message p {
  text-shadow: 1px 1px 0px rgb(49 49 49 / 74%);
}

/* 右 → 左アニメーション */
@keyframes flow-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-115.8%); /* 半分ずらして無限ループ */
  }
}

@media (max-width: 767.98px){
  .rb-hero-photo{
    aspect-ratio: 12/14;
  }
  .rb-hero-copy{
    width: 100%;
    top: 15%;
    z-index: 2;
  }
  .rb-hero-copy img {
    width: 100%;
  }
  .rb-hero-photo .img_pc { 
    display: none;
  }
  .rb-hero-photo .img_sp { 
    display: block;
  }
  .rb-hero-photo:after{
    content: "";
    position: absolute; left: 0px; top: 0px;
    display: block;
    background: linear-gradient(315deg, #66bbff 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, #66bbff 100%);
    width: 100%;
    height: 100%;
  }
  .hero-recruit-btn {
    justify-content: center !important;
    display: flex !important;
  }
  .rb-hero-intro {
    background: linear-gradient(180deg, #009BF0 0%, #1a4dbd 50%);
  }
  .bg-flow {
    animation: flow-left 30s linear infinite;
  }
}

/* =========================================
   slick
========================================= */
.top-slick {
  overflow-y: hidden;
  max-height: 450px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.top-slick.slick-initialized {
  opacity: 1;
}

/* =========================================
   company data grid
========================================= */
.panel1 {
  grid-template-columns: repeat(3, 1fr);
}
.panel2 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: 'chart . .' 'chart . .';
}
.panel3 {
  grid-template-columns: repeat(3, 1fr);
}
.panel4 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.chart-cell {
    grid-area: chart;
}
.cdb-wrap {
    color: #0155C4;
}
.cdb-cell {
    text-align: center;
    min-height: 145px;
    min-width: 370px;
}
.cdb-pill {
    background: #0155C4;
    padding: 0;
    width: 60%;
    font-weight: 500;
}
.cdb-big {
    font-size: 1.5rem;
}
.cdb-big em {
    font-size: 4rem;
    position: relative;
}
.cdb-mid {
    margin-top: 0;
}
.cdb-mid em {
    position: relative;
    line-height: 1;
}
.anno2:after {
	/* content: "※1"; */
  font-size: 1rem;
  position: absolute;
  bottom : 15px;
  padding-left: 33px;
}

.anno2-2:after {
	/* content: "※1"; */
  font-size: 1rem;
  position: absolute;
  bottom : 15px;
  padding-left: 5px;
}

.anno2-3:after {
	/* content: "※1"; */
  font-size: 1rem;
  position: absolute;
  bottom : 15px;
  padding-left: 40px;
}

.anno3:after {
	/* content: "※2"; */
  font-size: 1rem;
  position: absolute;
  bottom : 15px;
  padding-left: 56px;
}

.cdb-grow-row {
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.cdb-grow-row .v-text {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
}
.cdb-grow-row em {
    font-size: 3rem;
    font-style: normal;
}
.cdb-legend-img {
    color: #0057C7;
    font-weight: 600;
    word-break: keep-all;
    font-size: 0.9rem;
    gap: 8px;
}
.cdb-dot i {
    margin-right: unset;
}
.dot-color-1 i {
    background-color: #0049AA;
}
.dot-color-2 i {
    background-color: #0969DA;
}
.dot-color-3 i {
    background-color: #218BFF;
}
.dot-color-4 i {
    background-color: #61B3FF;
}
.dot-color-5 i {
    background-color: #97D3FF;
}
@media (min-width: 992px) {

}
@media (max-width: 991.98px) {
  /* .panel1 {
    grid-template-columns: unset;
    
  }
  .panel2 {
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-template-areas: unset;
  }
  .panel3 {
    grid-template-columns: unset;
  }
  .panel4 {
    grid-template-columns: unset;
    grid-template-rows: unset;
  }
  .chart-cell {
    grid-area: unset;
  }
  .cdb-cell {
    margin: 5px 10px;
  } */
}

@media (max-width: 1200px) {
  .cdb-panel {
    overflow-x: auto;   /* 横スクロール有効 */
    overflow-y: hidden; /* 縦スクロールは抑制 */
    white-space: nowrap; /* 子要素を折り返さず横に並べる */
    -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
    margin: 0px 10px;
  }

  .cdb-panel .cdb-cell {
    display: inline-block; /* 横並びにする */
    vertical-align: top;
    white-space: normal;   /* 内部テキストは折り返しOK */
  }
  .scroll-arrow {
    display: flex;
  }
}

/* =========================================
   interview
========================================= */
.rb-intv-grad {
  background: linear-gradient(0deg, #447CC5 0, rgba(0, 0, 0, 0) 45%);
}
.rb-intv-text {
  bottom: 15px;
  text-shadow:1px 1px 1px rgba(0, 0, 0, 0.4);
}
.rb-intv-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.slick-dots {
  text-align: left;
  bottom: -40px;
  width: auto;
  max-width: calc(100% - 100px);
}
.slick-dots li {
  width: 120px;
}
.slick-dots li button:before {
  width: 100%;
  height: 3px;
  background: #8f8f8f;
  content: '';
  margin-top: 10px;
}
.slick-dots li.slick-active button:before {
  background: #0155C4 !important;
  height: 4px;
  margin-top: 10px;
  opacity: 1 !important;
}
.slick-arrow {
  top: 115%;
  width: 45px;
  height: 45px;
  background-color: #F2F2F2;
}
.slick-prev {
  right: 45px;
  left: unset;
  border-radius: 40px 0 0 40px;
}
.slick-next {
  right: 0;
  border-radius: 0 40px 40px 0;
}
.slick-next:before{
  background: url(../images/arrow-right.svg);
  background-size: 25px 45px;
  background-repeat: no-repeat;
  margin: 0px 5px;
}
.slick-prev:before{
  background: url(../images/arrow-left.svg);
  background-size: 25px 45px;
  background-repeat: no-repeat;
  margin: 0px 13px;
}
.slick-arrow:before{
  content:""!important;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
  opacity:0.5;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #F2F2F2
}
.interviewee-pc {
  display: block;
}

.interviewee-sp {
  display: none;
}

.left-col {
  width: 30%;      /* 最低幅 */
  min-width: 30%;
  white-space: nowrap; /* 改行禁止 */
  font-size: 0.9rem;
  vertical-align:top;
  padding: 5px 0px 5px 5px;
}

.right-col {
  width: 70%;
  font-size: 0.9rem;
  padding: 5px 0px 5px 10px;
}

.interview-message-title {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  text-decoration-color: #cecece;
}

@media (max-width: 992px) {
  .slick-dots {
    display: none !important;
  }
  .rb-intv-name {
    font-size: 0.75em;
  }
  .rb-intv-text {
    bottom:8px;
  }
  .rb-intv-role {
    font-size: .7rem;
  }
  .interviewee-pc {
    display: none;
  }
  
  .interviewee-sp {
    display: block;
  }

}

/* =========================================
   environment
========================================= */
.rb-env-links.is-tight {
  --env-height: clamp(100px, 28vw, 250px);
  padding: 10px;
}
.rb-env-row {
  padding: 0 10%;
}

.interview-title {
  color: #000;
  padding: 10px 0px;
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  letter-spacing:2px;
}

.slick-track {
  display: flex;
  align-items: stretch;
}

.slick-slide {
  height: auto;
}


/* =========================================
   news
========================================= */
.news-list {
  border-top: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  border-bottom: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  border-color: rgba(0, 0, 0, .06);
}



/* ===============================================================================
    interview.html
================================================================================== */
#interview-list {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0) 0, #dff1ff 40%, rgba(0, 0, 0, 0) 85%, #a6d6fc 100%);
}
.rb-sec-sub-c {
  font-size: clamp(1.2rem, 1.1vw, 1.8rem);
  color: #0057C7;
  font-weight: 500;
}
#interview-list {
  counter-reset: number 0;
}
.interview-q1::before, .interview-q2::before, .interview-q3::before, .interview-q4::before, .interview-q5::before {
  counter-increment: number 1;
  content: "Q" counter(number);
  background: #009BF0;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin-right: 15px;
  padding: 1px 10px 3px;
  border-radius: 10px;
  font-weight: 300;
}

/* ===============================================================================
    environment.html
================================================================================== */
#environment-list {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0) 0, #dff1ff 40%, rgba(0, 0, 0, 0) 85%, #a6d6fc 100%);
}
.env-link {
  color: #000000;
  border-left: 1px solid #828282;
  font-weight: 500;
}
#career {
  counter-reset: number 0;
}
.career-model::before {
  counter-increment: number 1;
  content: "Case" counter(number);
  background: #009BF0;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin-right: 15px;
  padding: 1px 10px 3px;
  border-radius: 10px;
  font-weight: 300;
}
.career-model a {
  cursor: pointer;
}

.benefit-wrap {
  margin-bottom: 100px;
}
.benefit-contents {
  /* aspect-ratio: 4 / 4; */
  background: #F1F1F1;
  height: 100%;
}
.benefit-title {
  font-size: 1.18rem;
  color: #0155C4;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}
.benefit-text {
  font-size: 1rem;
}
.title2 {
  font-size: clamp(1.4rem, 1.2vw + 1.2rem, 1.5rem);
}
.rb-feature-schedule {
  background: #EAF5FF;
  font-size: 1rem;
}
.rb-feature-schedule b {
  margin-right: 1rem;
}
.rb-feature-career {
  background: #EAF5FF;
}
.rb-feature-career-arrow {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 15px solid #D9D9D9;
  width: 0;
  height: 0;
  margin: 10px;
  margin-left: calc(50% - 30px);
}
@media (max-width: 992px) {
  .env-link {
    font-size: 0.8rem;
  }
  .env-link-start {
    border-left: none;
  }
}


/* ==============================================================================
    recruit.html
================================================================================== */
#recruit-list {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #a6d6fc 85%, #dff1ff 100%);
}
#job-list {
  background: linear-gradient(30deg, #0057C7 0, #297edf 21%, #0057C7 100%);
} 
#ideal-list {
  background: #e8f5fe;
}
.rec-link {
  color: #000000;
  border-left: 1px solid #828282;
  font-weight: 500;
}
.rb-sec-bar2 {
    width: 100px;
    height: 4px;
    background-color: #00449C;
}
.job-list-head {
  color: #FFFFFF;
  font-weight: 600;
  background: #00449C;
  text-align: center;
  padding: 5px 0;
  border-radius: 40px;
}
.job-list-body {
  color: #000000;
  background: #FFFFFF;
  padding: 20px;
  cursor: pointer;
}
.row .col-12:nth-child(even) .job-list-body {
  margin-right: 10px;
}
.row .col-12:nth-child(odd) .job-list-body {
  margin-left: 10px;
}
.rb-sec-sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .02em;
  text-align: center;
}
.rb-sec-sub-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .02em;
  text-align: center;
}
.ideal-item {
  background: #009BF0;
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 20px;
  margin-left: 15px;
  margin-bottom: 20px;
}
.ideal-item img {
  width:25%;
  margin-right: 15px;
}
@media (max-width: 992px) {
  .rec-link {
    font-size: 0.9rem;
  }
  .rec-link-start {
    border-left: none;
  }
  .row .col-12:nth-child(even) .job-list-body {
    margin-right: unset;
  }
  .row .col-12:nth-child(odd) .job-list-body {
    margin-left: unset;
  }
}
/* =========================================
    entry form
========================================= */
.required::after {
  content: "必須";
  color: #A40E26;
  background: #FFE5E4;
  font-size: 0.8rem;
  margin-left: 10px;
  padding: 1px 5px;
  border-radius: 5px;
}
.btn-entry {
  width: 200px;
  padding: 12px 20px;
  background: #FFFFFF;
  border-radius: 25px;
  border: 1px solid #BBBBBB;
}
.btn-entry:hover {
  border: 1px solid #FFFFFF;
  color: #555555;
}
.text-complete {
  max-width: 530px;
}

/* ===============================================================================
    news.html
================================================================================== */
#news-list {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0) 0, #dff1ff 40%, rgba(0, 0, 0, 0) 85%, #a6d6fc 100%);
}
#news-list-container {
  margin-bottom: 20px;
}
#news-list-container li {
  display: none;
  padding: 20px 0;
  border-bottom: 1px solid #AFB8C1;
}
#news-list-container li.on {
    display: block;
}
.item-date {
  margin: 0;
  color: #828282;
  font-weight: 500;
  text-decoration: none;
}
.item-title {
  margin: 0;
  color: #000000;
  text-decoration: none;
}
.pagination .number > a.active {
  background-color: #FFFFFF;
  color: #0969DA;
  border: 1px solid #61B3FF;
  border-radius: 30px;
  padding: 15px;
}
.pagination {
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 5px;
}
.pagination .number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0 20px;
  color: #000;
}
#news-year-list-container {
  margin-bottom: 20px;
  list-style: none;
}
#news-year-list-container li {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #AFB8C1;
}
.item-link {
  color: #000000;
  text-decoration: none;
}
@media (max-width: 767.98px){
  #breadcrumb .news-title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #news-year-list-container {
    padding-left:0px;
  }
  #news-year-list-container li {
    border-bottom: unset;
    flex-shrink: 0;
    padding: 10px 25px;
    border-left: 1px solid #AFB8C1;
  }
  #news-year-list-container li:first-child {
    border-left: none;
  }
}

/* ==============================================================================
    news-detail.html
================================================================================== */
.news-text img{
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

/* ==============================================================================
    privacy.html
================================================================================== */
#privacy-list {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0) 0, #dff1ff 40%, rgba(0, 0, 0, 0) 85%, #a6d6fc 100%);
}

/* ===============================================================================
    共通スタイル
================================================================================== */

/* =========================================
   header
========================================= */
.site-header {
  background: rgba(255, 255, 255, 0.8);
}
.navbar-brand {
  height: 100%;
  padding-top: 18px;
}
#breadcrumb {
  overflow: hidden;
  word-break: keep-all;
}
@media (min-width: 992px) {
  #rbNav {
    height: 100%;
  }
  .navbar-nav {
    height: 100%;
  }
}
@media (max-width: 992px) {
  .nav-item {
    background: #FFFFFF;
  }
  header .navbar-nav .nav-link:hover, header .navbar-nav .nav-link:focus, header .navbar-nav .nav-link.active {
    background-color: rgb(13, 110, 253) !important;
    color: #fff;
    cursor: pointer;
  }
  .navbar-toggler, .navbar-toggler:focus {
    border: unset;
    box-shadow: unset;
  }
}

/* =========================================
   recruit
========================================= */
.rb-recruit {
    padding: 2rem !important;
}
.dots-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
  position: relative;
}
.dots-icon::before {
  background: url(../images/dots.png);
  content: "";
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -40px;
  top: 0;
}
@media (max-width: 1200px) {
  #recruit .card .flex-md-row {
      flex-direction: column!important;
  }
}
@media (max-width: 700px) {
  .entry-link2 {
    width: 100%;
  }
}

/* =========================================
   footer
========================================= */
.rb-footer {
    background: #162436;
}

/* =========================================
   global
========================================= */
.rb-sec-sub {
    font-size: clamp(1.2rem, 1.1vw, 1.8rem);
}
@media (max-width: 991.98px) {
  .pt-header {
      padding-top: 80px;
  }
  .rb-link-list {
    font-size: 0.8rem;
  }
}

/* =========================================
   modal
========================================= */
.rb-glass-backdrop {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rb-glass-modal, .rb-glass-modal-btn {
  width: min(1040px, 90vw);
}
.rb-feature-right {
  --rb-feature-img-ratio: 4/3;
}
.entry-link {
  display: inline-block;
  padding: 34px 42px;
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(43, 102, 229) 0%, rgb(62, 141, 233) 50%, rgb(74, 164, 240) 100%);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 18px;
}

@media (max-width: 992px) {
  .rb-feature-right {
    --rb-feature-img-ratio: unset;
  }

}

@media (max-width: 700px) {
  .rb-feature-grid {
    grid-template-columns:1fr;
    display: flex;
    flex-direction: column-reverse;
  }
  .rb-feature-right {
    --rb-feature-img-ratio: unset;
  }
  .rb-feature-right img{ height:320px; }
}

.custom-scroll-margin {
  scroll-margin-top: 70px; /* 固定ヘッダーの高さなどを指定 */
}